HomeSort by relevance Sort by last modified time
    Searched full:true_type (Results 1 - 25 of 825) 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/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...]
  /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/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;
  /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/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,
  /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/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/
template_util.h 24 typedef integral_constant<bool, true> true_type; typedef
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_org/third_party/libaddressinput/src/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_org/third_party/webrtc/base/
template_util.h 29 typedef integral_constant<bool, true> true_type; typedef in namespace:rtc
33 template <class T> struct is_pointer<T*> : true_type {};
36 template <class T> struct is_same<T,T> : true_type {};
39 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
40 template<class T> struct is_array<T[]> : public true_type {};
43 template <class T> struct is_non_const_reference<T&> : true_type {};
47 template <> struct is_void<void> : true_type {};
91 // Inherits from true_type if From is convertible to To, false_type otherwise.
93 // Note that if the type is convertible, this will be a true_type REGARDLESS
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
template_util.h 31 typedef integral_constant<bool, true> true_type; typedef in namespace:webrtc
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 {};
93 // Inherits from true_type if From is convertible to To, false_type otherwise.
95 // 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...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 74 /// typedef for true_type
75 typedef integral_constant<bool, true> true_type;
152 : public true_type { };
156 : public true_type { };
228 : public true_type { };
231 : public true_type { };
234 : public true_type { };
237 : public true_type { };
240 : public true_type { };
243 : public true_type { };
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 74 /// typedef for true_type
75 typedef integral_constant<bool, true> true_type;
152 : public true_type { };
156 : public true_type { };
228 : public true_type { };
231 : public true_type { };
234 : public true_type { };
237 : public true_type { };
240 : public true_type { };
243 : public true_type { };
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 74 /// typedef for true_type
75 typedef integral_constant<bool, true> true_type;
152 : public true_type { };
156 : public true_type { };
228 : public true_type { };
231 : public true_type { };
234 : public true_type { };
237 : public true_type { };
240 : public true_type { };
243 : public true_type { };
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
type_traits 74 /// typedef for true_type
75 typedef integral_constant<bool, true> true_type;
152 : public true_type { };
156 : public true_type { };
228 : public true_type { };
231 : public true_type { };
234 : public true_type { };
237 : public true_type { };
240 : public true_type { };
243 : public true_type { };
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
type_traits 69 typedef integral_constant<bool, true> true_type;
107 : public true_type
159 : public true_type { };
174 : public true_type { };
178 : public true_type { };
182 : public true_type { };
186 : public true_type { };
191 : public true_type { };
196 : public true_type { };
200 : public true_type { };
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
type_traits 69 typedef integral_constant<bool, true> true_type;
107 : public true_type
159 : public true_type { };
174 : public true_type { };
178 : public true_type { };
182 : public true_type { };
186 : public true_type { };
191 : public true_type { };
196 : public true_type { };
200 : public true_type { };
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
type_traits 66 typedef integral_constant<bool, true> true_type;
107 : public true_type
147 : public true_type { };
162 : public true_type { };
166 : public true_type { };
170 : public true_type { };
174 : public true_type { };
179 : public true_type { };
184 : public true_type { };
188 : public true_type { };
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
type_traits 66 typedef integral_constant<bool, true> true_type;
107 : public true_type
147 : public true_type { };
162 : public true_type { };
166 : public true_type { };
170 : public true_type { };
174 : public true_type { };
179 : public true_type { };
184 : public true_type { };
188 : public true_type { };
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
type_traits 69 typedef integral_constant<bool, true> true_type;
107 : public true_type
159 : public true_type { };
174 : public true_type { };
178 : public true_type { };
182 : public true_type { };
186 : public true_type { };
191 : public true_type { };
196 : public true_type { };
200 : public true_type { };
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
alloc_traits.h 51 : std::true_type { };
57 : std::true_type { };
63 : std::true_type { };
69 : std::true_type { };
75 : std::true_type { };
81 : std::true_type { };
87 : std::true_type { };

Completed in 1074 milliseconds

1 2 3 4 5 6 7 8 91011>>