HomeSort by relevance Sort by last modified time
    Searched refs:true_type (Results 1 - 25 of 351) 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...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.traits/
uses_allocator.pass.cpp 15 // struct uses_allocator<tuple<Types...>, Alloc> : true_type { };
28 static_assert((std::is_base_of<std::true_type,
33 static_assert((std::is_base_of<std::true_type,
38 static_assert((std::is_base_of<std::true_type,
43 static_assert((std::is_base_of<std::true_type,
  /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/parameter-framework/upstream/utility/
convert.hpp 51 struct ConvertionAllowed<bool> : std::true_type
55 struct ConvertionAllowed<long long> : std::true_type
59 struct ConvertionAllowed<unsigned long long> : std::true_type
63 struct ConvertionAllowed<long> : std::true_type
67 struct ConvertionAllowed<unsigned long> : std::true_type
71 struct ConvertionAllowed<int> : std::true_type
75 struct ConvertionAllowed<unsigned int> : std::true_type
79 struct ConvertionAllowed<short> : std::true_type
83 struct ConvertionAllowed<unsigned short> : std::true_type
87 struct ConvertionAllowed<unsigned char> : std::true_type
    [all...]
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
is_always_equal.pass.cpp 27 typedef std::true_type is_always_equal;
45 static_assert((std::is_same<std::allocator_traits<A<char> >::is_always_equal, std::true_type>::value), "");
46 static_assert((std::is_same<std::allocator_traits<B<char> >::is_always_equal, std::true_type>::value), "");
49 static_assert((std::is_same<std::allocator_traits<A<const char> >::is_always_equal, std::true_type>::value), "");
50 static_assert((std::is_same<std::allocator_traits<B<const char> >::is_always_equal, std::true_type>::value), "");
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/libchrome/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::*)(A...)> : true_type {};
39 struct is_member_function_pointer<R(Z::*)(A...) const> : true_type {};
43 template <class T> struct is_same<T,T> : true_type {};
46 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
47 template<class T> struct is_array<T[]> : public true_type {};
50 template <class T> struct is_non_const_reference<T&> : true_type {};
54 template <class T> struct is_const<const T> : true_type {};
57 template <> struct is_void<void> : true_type {};
    [all...]
  /external/libcxx/test/std/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), "");
46 std::true_type t1;
47 std::true_type t2 = t1;
  /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/libcxx/test/std/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/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/webrtc/webrtc/base/
template_util.h 31 typedef integral_constant<bool, true> true_type; typedef in namespace:rtc
35 template <class T> struct is_pointer<T*> : true_type {};
38 template <class T> struct is_same<T, T> : true_type {};
41 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
42 template<class T> struct is_array<T[]> : public true_type {};
45 template <class T> struct is_non_const_reference<T&> : true_type {};
49 template <> struct is_void<void> : true_type {};
106 // Inherits from true_type if From is convertible to To, false_type otherwise.
108 // Note that if the type is convertible, this will be a true_type REGARDLESS
  /external/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...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/windows/protobuf2.5/include/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...]
  /prebuilts/tools/linux-x86_64/protoc/include/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/libweave/third_party/chromium/base/
template_util.h 16 template <class T> struct is_non_const_reference<T&> : std::true_type {};
  /external/llvm/tools/llvm-cxxdump/
Error.h 36 struct is_error_code_enum<llvm::cxxdump_error> : std::true_type {};

Completed in 342 milliseconds

1 2 3 4 5 6 7 8 91011>>