/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
D | is_unsigned.hpp | 84 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 …]
|
D | is_signed.hpp | 89 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 …]
|
D | integral_constant.hpp | 48 typedef integral_constant<bool,true> true_type; typedef
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.hel/ |
D | integral_constant.pass.cpp | 31 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/ |
D | uses_allocator.pass.cpp | 26 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/ |
D | propagate_on_container_copy_assignment.pass.cpp | 27 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()
|
D | propagate_on_container_swap.pass.cpp | 27 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()
|
D | propagate_on_container_move_assignment.pass.cpp | 27 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/ |
D | propagate_on_container_move_assignment.pass.cpp | 32 std::true_type>::value), ""); in main() 36 std::true_type>::value), ""); in main()
|
D | propagate_on_container_swap.pass.cpp | 36 std::true_type>::value), ""); in main()
|
D | propagate_on_container_copy_assignment.pass.cpp | 36 std::true_type>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/ |
D | test_allocator.h | 146 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/ |
D | ErrorCodeEnum.pass.cpp | 27 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/ |
D | ErrorCodeEnum.pass.cpp | 27 template <> struct is_error_code_enum<testing> : public std::true_type {};
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
D | allocators.h | 87 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 | __tuple | 77 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 {};
|
D | type_traits | 22 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/ |
D | swap_noexcept.pass.cpp | 32 typedef std::true_type propagate_on_container_swap;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/ |
D | swap_noexcept.pass.cpp | 32 typedef std::true_type propagate_on_container_swap;
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | type_traits | 139 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/ |
D | swap_noexcept.pass.cpp | 33 typedef std::true_type propagate_on_container_swap;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/ |
D | swap_noexcept.pass.cpp | 33 typedef std::true_type propagate_on_container_swap;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/ |
D | swap_noexcept.pass.cpp | 33 typedef std::true_type propagate_on_container_swap;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.special/ |
D | swap_noexcept.pass.cpp | 33 typedef std::true_type propagate_on_container_swap;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.special/ |
D | swap_noexcept.pass.cpp | 33 typedef std::true_type propagate_on_container_swap;
|