HomeSort by relevance Sort by last modified time
    Searched refs:true_type (Results 1 - 25 of 501) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
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...]
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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.traits/
uses_allocator.pass.cpp 15 // struct uses_allocator<tuple<Types...>, Alloc> : true_type { };
26 static_assert((std::is_base_of<std::true_type,
31 static_assert((std::is_base_of<std::true_type,
36 static_assert((std::is_base_of<std::true_type,
41 static_assert((std::is_base_of<std::true_type,
  /external/chromium_org/third_party/cld/base/
type_traits.h 31 #include "base/template_util.h" // For true_type and false_type
38 template<> struct is_integral<bool> : true_type { };
39 template<> struct is_integral<char> : true_type { };
40 template<> struct is_integral<unsigned char> : true_type { };
41 template<> struct is_integral<signed char> : true_type { };
46 template<> struct is_integral<__wchar_t> : true_type { };
48 template<> struct is_integral<wchar_t> : true_type { };
50 template<> struct is_integral<short> : true_type { };
51 template<> struct is_integral<unsigned short> : true_type { };
52 template<> struct is_integral<int> : true_type { };
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.hel/
integral_constant.pass.cpp 31 static_assert ( std::true_type{}(), "" );
38 static_assert(std::true_type::value == true, "");
39 static_assert((std::is_same<std::true_type::value_type, bool>::value), "");
40 static_assert((std::is_same<std::true_type::type, std::true_type>::value), "");
45 std::true_type t1;
46 std::true_type t2 = t1;
  /external/llvm/include/llvm/Object/
Error.h 44 template <> struct is_error_code_enum<object::object_error> : true_type { };
46 template <> struct is_error_code_enum<object::object_error::Impl> : true_type {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/
propagate_on_container_move_assignment.pass.cpp 32 std::true_type>::value), "");
36 std::true_type>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
propagate_on_container_copy_assignment.pass.cpp 27 typedef std::true_type propagate_on_container_copy_assignment;
38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_copy_assignment, std::true_type>::value), "");
propagate_on_container_move_assignment.pass.cpp 27 typedef std::true_type propagate_on_container_move_assignment;
38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_move_assignment, std::true_type>::value), "");
propagate_on_container_swap.pass.cpp 27 typedef std::true_type propagate_on_container_swap;
38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_swap, std::true_type>::value), "");
  /external/chromium_org/base/
template_util.h 25 typedef integral_constant<bool, true> true_type; typedef in namespace:base
29 template <class T> struct is_pointer<T*> : true_type {};
32 template <class T> struct is_same<T,T> : true_type {};
35 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
36 template<class T> struct is_array<T[]> : public true_type {};
39 template <class T> struct is_non_const_reference<T&> : true_type {};
43 template <> struct is_void<void> : true_type {};
87 // Inherits from true_type if From is convertible to To, false_type otherwise.
89 // Note that if the type is convertible, this will be a true_type REGARDLESS
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
template_util.h 24 typedef integral_constant<bool, true> true_type; typedef in namespace:i18n::phonenumbers
28 template <class T> struct is_pointer<T*> : true_type {};
31 template <class T> struct is_same<T,T> : true_type {};
34 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
35 template<class T> struct is_array<T[]> : public true_type {};
38 template <class T> struct is_non_const_reference<T&> : true_type {};
42 template <> struct is_void<void> : true_type {};
86 // Inherits from true_type if From is convertible to To, false_type otherwise.
88 // Note that if the type is convertible, this will be a true_type REGARDLESS
  /external/chromium/base/
template_util.h 26 typedef integral_constant<bool, true> true_type; typedef in namespace:base
30 template <class T> struct is_pointer<T*> : true_type {};
33 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
34 template<class T> struct is_array<T[]> : public true_type {};
37 template <class T> struct is_non_const_reference<T&> : true_type {};
82 // Inherits from true_type if From is convertible to To, false_type otherwise.
84 // Note that if the type is convertible, this will be a true_type REGARDLESS
  /external/llvm/include/llvm/Support/
type_traits.h 93 typedef integral_constant<bool, true> true_type; typedef in namespace:llvm
99 template<typename T> struct is_same<T, T> : public true_type {};
117 template <> struct is_integral_impl< bool> : true_type {};
118 template <> struct is_integral_impl< char> : true_type {};
119 template <> struct is_integral_impl< signed char> : true_type {};
120 template <> struct is_integral_impl<unsigned char> : true_type {};
121 template <> struct is_integral_impl< wchar_t> : true_type {};
122 template <> struct is_integral_impl< short> : true_type {};
123 template <> struct is_integral_impl<unsigned short> : true_type {};
124 template <> struct is_integral_impl< int> : true_type {};
    [all...]
  /external/llvm/tools/llvm-readobj/
Error.h 43 template <> struct is_error_code_enum<readobj_error> : true_type { };
44 template <> struct is_error_code_enum<readobj_error::_> : true_type { };
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type,
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 46 assert_entry_pointer_valid(const entry_pointer p_e, true_type) const

Completed in 1263 milliseconds

1 2 3 4 5 6 7 8 91011>>