Home
last modified time | relevance | path

Searched refs:true_type (Results 1 – 25 of 62) sorted by relevance

123

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
Dis_unsigned.hpp84 template <> struct is_unsigned_imp<unsigned char> : public true_type{};
85 template <> struct is_unsigned_imp<const unsigned char> : public true_type{};
86 template <> struct is_unsigned_imp<volatile unsigned char> : public true_type{};
87 template <> struct is_unsigned_imp<const volatile unsigned char> : public true_type{};
88 template <> struct is_unsigned_imp<unsigned short> : public true_type{};
89 template <> struct is_unsigned_imp<const unsigned short> : public true_type{};
90 template <> struct is_unsigned_imp<volatile unsigned short> : public true_type{};
91 template <> struct is_unsigned_imp<const volatile unsigned short> : public true_type{};
92 template <> struct is_unsigned_imp<unsigned int> : public true_type{};
93 template <> struct is_unsigned_imp<const unsigned int> : public true_type{};
[all …]
Dis_signed.hpp89 template <> struct is_signed_imp<signed char> : public true_type{};
90 template <> struct is_signed_imp<const signed char> : public true_type{};
91 template <> struct is_signed_imp<volatile signed char> : public true_type{};
92 template <> struct is_signed_imp<const volatile signed char> : public true_type{};
93 template <> struct is_signed_imp<short> : public true_type{};
94 template <> struct is_signed_imp<const short> : public true_type{};
95 template <> struct is_signed_imp<volatile short> : public true_type{};
96 template <> struct is_signed_imp<const volatile short> : public true_type{};
97 template <> struct is_signed_imp<int> : public true_type{};
98 template <> struct is_signed_imp<const int> : public true_type{};
[all …]
Dintegral_constant.hpp48 typedef integral_constant<bool,true> true_type; typedef
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.hel/
Dintegral_constant.pass.cpp31 static_assert ( std::true_type{}(), "" ); in main()
38 static_assert(std::true_type::value == true, ""); in main()
39 static_assert((std::is_same<std::true_type::value_type, bool>::value), ""); in main()
40 static_assert((std::is_same<std::true_type::type, std::true_type>::value), ""); in main()
45 std::true_type t1; in main()
46 std::true_type t2 = t1; in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.traits/
Duses_allocator.pass.cpp26 static_assert((std::is_base_of<std::true_type, in main()
31 static_assert((std::is_base_of<std::true_type, in main()
36 static_assert((std::is_base_of<std::true_type, in main()
41 static_assert((std::is_base_of<std::true_type, in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
Dpropagate_on_container_copy_assignment.pass.cpp27 typedef std::true_type propagate_on_container_copy_assignment;
38 …::allocator_traits<A<char> >::propagate_on_container_copy_assignment, std::true_type>::value), ""); in main()
Dpropagate_on_container_swap.pass.cpp27 typedef std::true_type propagate_on_container_swap;
38 …is_same<std::allocator_traits<A<char> >::propagate_on_container_swap, std::true_type>::value), ""); in main()
Dpropagate_on_container_move_assignment.pass.cpp27 typedef std::true_type propagate_on_container_move_assignment;
38 …::allocator_traits<A<char> >::propagate_on_container_move_assignment, std::true_type>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/
Dpropagate_on_container_move_assignment.pass.cpp32 std::true_type>::value), ""); in main()
36 std::true_type>::value), ""); in main()
Dpropagate_on_container_swap.pass.cpp36 std::true_type>::value), ""); in main()
Dpropagate_on_container_copy_assignment.pass.cpp36 std::true_type>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/
Dtest_allocator.h146 typedef std::true_type propagate_on_container_copy_assignment;
147 typedef std::true_type propagate_on_container_move_assignment;
148 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
DErrorCodeEnum.pass.cpp27 template <> struct is_error_code_enum<testing> : public std::true_type {};
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
DErrorCodeEnum.pass.cpp27 template <> struct is_error_code_enum<testing> : public std::true_type {};
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
Dallocators.h87 typedef std::true_type propagate_on_container_move_assignment;
132 typedef std::true_type propagate_on_container_copy_assignment;
133 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
D__tuple77 template <class... _Tp> struct __tuple_like<tuple<_Tp...> > : true_type {};
78 template <class _T1, class _T2> struct __tuple_like<pair<_T1, _T2> > : true_type {};
79 template <class _Tp, size_t _Size> struct __tuple_like<array<_Tp, _Size> > : true_type {};
184 template <class... _Tp> struct __tuple_like<__tuple_types<_Tp...> > : true_type {};
233 : public true_type {};
260 : public true_type {};
287 : public true_type {};
Dtype_traits22 typedef integral_constant<bool, true> true_type;
250 typedef integral_constant<bool, true> true_type;
256 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_const<_Tp const> : public true_type {};
261 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_volatile<_Tp volatile> : public true_type {};
290 template <> struct __libcpp_is_void<void> : public true_type {};
298 template <> struct __is_nullptr_t_impl<nullptr_t> : public true_type {};
311 template <> struct __libcpp_is_integral<bool> : public true_type {};
312 template <> struct __libcpp_is_integral<char> : public true_type {};
313 template <> struct __libcpp_is_integral<signed char> : public true_type {};
314 template <> struct __libcpp_is_integral<unsigned char> : public true_type {};
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.special/
Dswap_noexcept.pass.cpp32 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
Dswap_noexcept.pass.cpp32 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/stlport/stlport/
Dtype_traits139 typedef integral_constant<bool, true> true_type;
208 public true_type
246 public true_type
251 public true_type
268 public true_type
278 // public true_type
288 public true_type
431 public true_type
441 public true_type
587 public true_type
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.special/
Dswap_noexcept.pass.cpp33 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/
Dswap_noexcept.pass.cpp33 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
Dswap_noexcept.pass.cpp33 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.special/
Dswap_noexcept.pass.cpp33 typedef std::true_type propagate_on_container_swap;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.special/
Dswap_noexcept.pass.cpp33 typedef std::true_type propagate_on_container_swap;

123