/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...] |
/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 {}; 37 struct is_member_function_pointer<R(Z::*)()> : true_type {}; 39 struct is_member_function_pointer<R(Z::*)() const> : true_type {}; 42 struct is_member_function_pointer<R(Z::*)(A)> : true_type {}; 44 struct is_member_function_pointer<R(Z::*)(A) const> : true_type {}; 47 struct is_member_function_pointer<R(Z::*)(A, B)> : true_type {}; 49 struct is_member_function_pointer<R(Z::*)(A, B) const> : true_type {}; 52 struct is_member_function_pointer<R(Z::*)(A, B, C)> : true_type {}; 54 struct is_member_function_pointer<R(Z::*)(A, B, C) const> : 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/third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/ |
template_util.h | 27 typedef integral_constant<bool, true> true_type; typedef in namespace:i18n::addressinput 31 template <class T> struct is_pointer<T*> : true_type {}; 34 template <class T> struct is_same<T,T> : true_type {}; 37 template<class T, size_t n> struct is_array<T[n]> : public true_type {}; 38 template<class T> struct is_array<T[]> : public true_type {}; 41 template <class T> struct is_non_const_reference<T&> : true_type {}; 45 template <> struct is_void<void> : true_type {}; 89 // Inherits from true_type if From is convertible to To, false_type otherwise. 91 // Note that if the type is convertible, this will be a true_type REGARDLESS
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
template_util.h | 23 typedef integral_constant<bool, true> true_type; typedef in namespace:talk_base 27 template <class T> struct is_pointer<T*> : true_type {}; 30 template <class T> struct is_same<T,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 {}; 41 template <> struct is_void<void> : true_type {}; 85 // Inherits from true_type if From is convertible to To, false_type otherwise. 87 // 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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
type_traits.h | 63 #include <google/protobuf/stubs/template_util.h> // For true_type and false_type 97 template<> struct is_integral<bool> : true_type { }; 98 template<> struct is_integral<char> : true_type { }; 99 template<> struct is_integral<unsigned char> : true_type { }; 100 template<> struct is_integral<signed char> : true_type { }; 105 template<> struct is_integral<__wchar_t> : true_type { }; 107 template<> struct is_integral<wchar_t> : true_type { }; 109 template<> struct is_integral<short> : true_type { }; 110 template<> struct is_integral<unsigned short> : true_type { }; 111 template<> struct is_integral<int> : true_type { }; [all...] |
/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
|