| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr2/ |
| H A D | bool_set | 62 constexpr bool_set(bool __t) : _M_b(_Bool_set_val(__t)) { } 114 operator^(bool_set __s, bool_set __t) 115 { return __s._M_xor(__t); } 118 operator|(bool_set __s, bool_set __t) 119 { return __s._M_or(__t); } 122 operator&(bool_set __s, bool_set __t) 123 { return __s._M_and(__t); } 126 operator==(bool_set __s, bool_set __t) 127 { return __s._M_eq(__t); } 206 contains(bool_set __s, bool_set __t) [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr2/ |
| H A D | bool_set | 62 constexpr bool_set(bool __t) : _M_b(_Bool_set_val(__t)) { } 114 operator^(bool_set __s, bool_set __t) 115 { return __s._M_xor(__t); } 118 operator|(bool_set __s, bool_set __t) 119 { return __s._M_or(__t); } 122 operator&(bool_set __s, bool_set __t) 123 { return __s._M_and(__t); } 126 operator==(bool_set __s, bool_set __t) 127 { return __s._M_eq(__t); } 206 contains(bool_set __s, bool_set __t) [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/ |
| H A D | stl_function.h | 235 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 236 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 237 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 238 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 250 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 251 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 252 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 253 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 265 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 266 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | range_cmp.h | 51 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY() 52 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY() 70 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY() 73 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 74 { operator<(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY() 75 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 76 { std::forward<_Tp>(__t).operator<(std::forward<_Up>(__u)); }); in _GLIBCXX_VISIBILITY() 90 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 92 { return std::forward<_Tp>(__t) == std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 103 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | range_access.h | 357 __to_unsigned_like(_Tp __t) noexcept in _GLIBCXX_VISIBILITY() 358 { return static_cast<make_unsigned_t<_Tp>>(__t); } in _GLIBCXX_VISIBILITY() 362 __to_unsigned_like(__int128 __t) noexcept in _GLIBCXX_VISIBILITY() 363 { return __t; } in _GLIBCXX_VISIBILITY() 366 __to_unsigned_like(unsigned __int128 __t) noexcept in _GLIBCXX_VISIBILITY() 367 { return __t; } in _GLIBCXX_VISIBILITY() 410 operator()(_Tp&& __t) const noexcept(_S_noexcept<_Tp>()) in _GLIBCXX_VISIBILITY() 417 return __t + 0; in _GLIBCXX_VISIBILITY() 420 return __t.begin(); in _GLIBCXX_VISIBILITY() 422 return begin(__t); in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | valarray_before.h | 66 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 67 { return abs(__t); } in _GLIBCXX_VISIBILITY() 73 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 74 { return cos(__t); } in _GLIBCXX_VISIBILITY() 80 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 81 { return acos(__t); } in _GLIBCXX_VISIBILITY() 87 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 88 { return cosh(__t); } in _GLIBCXX_VISIBILITY() 94 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 95 { return sin(__t); } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | random.h | 470 _UIntType __b, size_t __t, in _GLIBCXX_VISIBILITY() 484 static_assert(__t <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 519 static constexpr size_t tempering_t = __t; in _GLIBCXX_VISIBILITY() 666 _UIntType __b, size_t __t, in _GLIBCXX_VISIBILITY() 670 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __lhs, in _GLIBCXX_VISIBILITY() 672 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __rhs) in _GLIBCXX_VISIBILITY() 1874 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY() 1876 { this->__generate(__f, __t, __urng, _M_param); } in _GLIBCXX_VISIBILITY() 1881 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY() 1884 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | valarray_array.h | 105 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t) in _GLIBCXX_VISIBILITY() 108 new(__b++) _Tp(__t); in _GLIBCXX_VISIBILITY() 116 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t) in _GLIBCXX_VISIBILITY() 119 *__b++ = __t; in _GLIBCXX_VISIBILITY() 125 __valarray_fill_construct(_Tp* __b, _Tp* __e, const _Tp __t) in _GLIBCXX_VISIBILITY() 127 _Array_init_ctor<_Tp, __is_trivial(_Tp)>::_S_do_it(__b, __e, __t); in _GLIBCXX_VISIBILITY() 217 __valarray_fill(_Tp* __restrict__ __a, size_t __n, const _Tp& __t) in _GLIBCXX_VISIBILITY() 220 *__a++ = __t; in _GLIBCXX_VISIBILITY() 227 size_t __s, const _Tp& __t) in _GLIBCXX_VISIBILITY() 230 *__a = __t; in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/ |
| H A D | stl_function.h | 235 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 236 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 237 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 238 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 250 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 251 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 252 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 253 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 265 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 266 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | range_cmp.h | 51 operator()(_Tp&& __t) const noexcept in _GLIBCXX_VISIBILITY() 52 { return std::forward<_Tp>(__t); } in _GLIBCXX_VISIBILITY() 70 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY() 73 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 74 { operator<(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY() 75 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 76 { std::forward<_Tp>(__t).operator<(std::forward<_Up>(__u)); }); in _GLIBCXX_VISIBILITY() 90 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 92 { return std::forward<_Tp>(__t) == std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 103 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | range_access.h | 357 __to_unsigned_like(_Tp __t) noexcept in _GLIBCXX_VISIBILITY() 358 { return static_cast<make_unsigned_t<_Tp>>(__t); } in _GLIBCXX_VISIBILITY() 362 __to_unsigned_like(__int128 __t) noexcept in _GLIBCXX_VISIBILITY() 363 { return __t; } in _GLIBCXX_VISIBILITY() 366 __to_unsigned_like(unsigned __int128 __t) noexcept in _GLIBCXX_VISIBILITY() 367 { return __t; } in _GLIBCXX_VISIBILITY() 410 operator()(_Tp&& __t) const noexcept(_S_noexcept<_Tp>()) in _GLIBCXX_VISIBILITY() 417 return __t + 0; in _GLIBCXX_VISIBILITY() 420 return __t.begin(); in _GLIBCXX_VISIBILITY() 422 return begin(__t); in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | valarray_before.h | 66 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 67 { return abs(__t); } in _GLIBCXX_VISIBILITY() 73 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 74 { return cos(__t); } in _GLIBCXX_VISIBILITY() 80 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 81 { return acos(__t); } in _GLIBCXX_VISIBILITY() 87 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 88 { return cosh(__t); } in _GLIBCXX_VISIBILITY() 94 _Tp operator()(const _Tp& __t) const in _GLIBCXX_VISIBILITY() 95 { return sin(__t); } in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | random.h | 470 _UIntType __b, size_t __t, in _GLIBCXX_VISIBILITY() 484 static_assert(__t <= __w, "template argument substituting " in _GLIBCXX_VISIBILITY() 519 static constexpr size_t tempering_t = __t; in _GLIBCXX_VISIBILITY() 666 _UIntType __b, size_t __t, in _GLIBCXX_VISIBILITY() 670 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __lhs, in _GLIBCXX_VISIBILITY() 672 __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>& __rhs) in _GLIBCXX_VISIBILITY() 1874 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY() 1876 { this->__generate(__f, __t, __urng, _M_param); } in _GLIBCXX_VISIBILITY() 1881 __generate(_ForwardIterator __f, _ForwardIterator __t, in _GLIBCXX_VISIBILITY() 1884 { this->__generate_impl(__f, __t, __urng, __p); } in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | tree.h | 3291 tree_check (tree __t, const char *__f, int __l, const char *__g, tree_code __c) in tree_check() argument 3293 if (TREE_CODE (__t) != __c) in tree_check() 3294 tree_check_failed (__t, __f, __l, __g, __c, 0); in tree_check() 3295 return __t; in tree_check() 3299 tree_not_check (tree __t, const char *__f, int __l, const char *__g, in tree_not_check() argument 3302 if (TREE_CODE (__t) == __c) in tree_not_check() 3303 tree_not_check_failed (__t, __f, __l, __g, __c, 0); in tree_not_check() 3304 return __t; in tree_not_check() 3308 tree_check2 (tree __t, const char *__f, int __l, const char *__g, in tree_check2() argument 3311 if (TREE_CODE (__t) != __c1 in tree_check2() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | tree.h | 3291 tree_check (tree __t, const char *__f, int __l, const char *__g, tree_code __c) in tree_check() argument 3293 if (TREE_CODE (__t) != __c) in tree_check() 3294 tree_check_failed (__t, __f, __l, __g, __c, 0); in tree_check() 3295 return __t; in tree_check() 3299 tree_not_check (tree __t, const char *__f, int __l, const char *__g, in tree_not_check() argument 3302 if (TREE_CODE (__t) == __c) in tree_not_check() 3303 tree_not_check_failed (__t, __f, __l, __g, __c, 0); in tree_not_check() 3304 return __t; in tree_not_check() 3308 tree_check2 (tree __t, const char *__f, int __l, const char *__g, in tree_check2() argument 3311 if (TREE_CODE (__t) != __c1 in tree_check2() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/parallel/ |
| H A D | unique_copy.h | 132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t) in __parallel_unique_copy() local 133 __begin_output += __counter[__t]; in __parallel_unique_copy() 157 for (_ThreadIndex __t = 0; __t < __iam; __t++) in __parallel_unique_copy() local 158 __begin_output += __counter[__t]; in __parallel_unique_copy() 171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++) in __parallel_unique_copy() local 172 __end_output += __counter[__t]; in __parallel_unique_copy()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/parallel/ |
| H A D | unique_copy.h | 132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t) in __parallel_unique_copy() local 133 __begin_output += __counter[__t]; in __parallel_unique_copy() 157 for (_ThreadIndex __t = 0; __t < __iam; __t++) in __parallel_unique_copy() local 158 __begin_output += __counter[__t]; in __parallel_unique_copy() 171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++) in __parallel_unique_copy() local 172 __end_output += __counter[__t]; in __parallel_unique_copy()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | __split_buffer | 429 __split_buffer<value_type, __alloc_rr&> __t(__n, 0, __alloc()); 430 __t.__construct_at_end(move_iterator<pointer>(__begin_), 432 _VSTD::swap(__first_, __t.__first_); 433 _VSTD::swap(__begin_, __t.__begin_); 434 _VSTD::swap(__end_, __t.__end_); 435 _VSTD::swap(__end_cap(), __t.__end_cap()); 449 __split_buffer<value_type, __alloc_rr&> __t(size(), 0, __alloc()); 450 __t.__construct_at_end(move_iterator<pointer>(__begin_), 452 __t.__end_ = __t.__begin_ + (__end_ - __begin_); 453 _VSTD::swap(__first_, __t.__first_); [all …]
|
| H A D | tuple | 221 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value)) 222 : __value_(_VSTD::forward<_Tp>(__t)) 228 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t) 229 : __value_(_VSTD::forward<_Tp>(__t)) 235 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t) 236 : __value_(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t)) 242 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t) 243 : __value_(_VSTD::forward<_Tp>(__t), __a) 247 __tuple_leaf(const __tuple_leaf& __t) = default; 248 __tuple_leaf(__tuple_leaf&& __t) = default; [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | __split_buffer | 429 __split_buffer<value_type, __alloc_rr&> __t(__n, 0, __alloc()); 430 __t.__construct_at_end(move_iterator<pointer>(__begin_), 432 _VSTD::swap(__first_, __t.__first_); 433 _VSTD::swap(__begin_, __t.__begin_); 434 _VSTD::swap(__end_, __t.__end_); 435 _VSTD::swap(__end_cap(), __t.__end_cap()); 449 __split_buffer<value_type, __alloc_rr&> __t(size(), 0, __alloc()); 450 __t.__construct_at_end(move_iterator<pointer>(__begin_), 452 __t.__end_ = __t.__begin_ + (__end_ - __begin_); 453 _VSTD::swap(__first_, __t.__first_); [all …]
|
| H A D | tuple | 221 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value)) 222 : __value_(_VSTD::forward<_Tp>(__t)) 228 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t) 229 : __value_(_VSTD::forward<_Tp>(__t)) 235 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t) 236 : __value_(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t)) 242 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t) 243 : __value_(_VSTD::forward<_Tp>(__t), __a) 247 __tuple_leaf(const __tuple_leaf& __t) = default; 248 __tuple_leaf(__tuple_leaf&& __t) = default; [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | concepts | 175 && requires(_Tp&& __t, _Up&& __u) { 176 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 200 operator()(_Tp&& __t, _Up&& __u) const 204 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 207 auto __tmp = static_cast<remove_reference_t<_Tp>&&>(__t); 208 __t = static_cast<remove_reference_t<_Tp>&&>(__u); 239 && requires(_Tp&& __t, _Up&& __u) { 240 ranges::swap(static_cast<_Tp&&>(__t), static_cast<_Tp&&>(__t)); 242 ranges::swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 243 ranges::swap(static_cast<_Up&&>(__u), static_cast<_Tp&&>(__t)); [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | concepts | 175 && requires(_Tp&& __t, _Up&& __u) { 176 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 200 operator()(_Tp&& __t, _Up&& __u) const 204 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 207 auto __tmp = static_cast<remove_reference_t<_Tp>&&>(__t); 208 __t = static_cast<remove_reference_t<_Tp>&&>(__u); 239 && requires(_Tp&& __t, _Up&& __u) { 240 ranges::swap(static_cast<_Tp&&>(__t), static_cast<_Tp&&>(__t)); 242 ranges::swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 243 ranges::swap(static_cast<_Up&&>(__u), static_cast<_Tp&&>(__t)); [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/ |
| H A D | tuple | 258 __get_helper(_Tuple_impl<__i, _Head, _Tail...>& __t) 260 return __t._M_head; 265 __get_helper(const _Tuple_impl<__i, _Head, _Tail...>& __t) 267 return __t._M_head; 276 get(tuple<_Elements...>& __t) 278 return __get_helper<__i>(__t); 285 get(const tuple<_Elements...>& __t) 287 return __get_helper<__i>(__t); 298 static bool __eq(const _Tp& __t, const _Up& __u) 300 return (get<__i>(__t) == get<__i>(__u) && [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/ |
| H A D | tuple | 258 __get_helper(_Tuple_impl<__i, _Head, _Tail...>& __t) 260 return __t._M_head; 265 __get_helper(const _Tuple_impl<__i, _Head, _Tail...>& __t) 267 return __t._M_head; 276 get(tuple<_Elements...>& __t) 278 return __get_helper<__i>(__t); 285 get(const tuple<_Elements...>& __t) 287 return __get_helper<__i>(__t); 298 static bool __eq(const _Tp& __t, const _Up& __u) 300 return (get<__i>(__t) == get<__i>(__u) && [all …]
|