Searched refs:true_type (Results 1 - 25 of 65) sorted by relevance

123

/external/llvm/include/llvm/Support/
H A Dtype_traits.h93 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/chromium_org/third_party/cld/base/
H A Dtype_traits.h31 #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...]
H A Dmacros.h208 template<> struct is_pod<TypeName> : true_type { }; \
237 template <> struct ERROR_TYPE_MUST_BE_POD<base::true_type> { };
H A Dtemplate_util.h49 // Abbreviations: true_type and false_type are structs that represent boolean
52 typedef integral_constant<bool, true> true_type; typedef in namespace:base
54 typedef true_type true_;
/external/chromium_org/base/
H A Dtemplate_util.h25 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/llvm/include/llvm/Object/
H A DError.h44 template <> struct is_error_code_enum<object::object_error> : true_type { };
46 template <> struct is_error_code_enum<object::object_error::Impl> : true_type {
/external/llvm/tools/llvm-readobj/
H A DError.h43 template <> struct is_error_code_enum<readobj_error> : true_type { };
44 template <> struct is_error_code_enum<readobj_error::_> : true_type { };
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/
H A Dtemplate_util.h27 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/
H A Dtemplate_util.h23 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/
H A Dtemplate_util.h24 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/
H A Dtemplate_util.h26 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
H A Dbind_helpers.h232 struct MaybeRefcount<base::true_type, UnretainedWrapper<T> > {
238 struct MaybeRefcount<base::true_type, T*> {
244 struct MaybeRefcount<base::true_type, const T*> {
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dtype_traits.h63 #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...]
H A Dtemplate_util_unittest.cc56 EXPECT_TRUE(true_type::value);
64 typedef if_<true, true_type, false_type>::type if_true;
67 typedef if_<false, true_type, false_type>::type if_false;
H A Dtemplate_util.h86 // Abbreviations: true_type and false_type are structs that represent boolean
89 typedef integral_constant<bool, true> true_type; typedef in namespace:google::protobuf::internal
91 typedef true_type true_;
/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-internal-utils.h190 : public true_type {}; // NOLINT
195 : public true_type {}; // NOLINT
200 : public true_type {}; // NOLINT
339 template <typename T> struct is_reference<T&> : public true_type {};
343 template <typename T> struct type_equals<T, T> : public true_type {};
/external/eigen/Eigen/src/Core/
H A DDiagonalProduct.h75 ||(int(StorageOrder) == ColMajor && int(ProductOrder) == OnTheRight)), internal::true_type, internal::false_type>::type());
80 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::true_type) const
/external/llvm/unittests/Support/
H A DErrorOrTest.cpp79 struct ErrorOrUserDataTraits<InvalidArgError> : true_type {
/external/chromium/net/socket/
H A Dclient_socket_pool.h156 // pairing to inherit from base::true_type. This provides compile time
177 : public base::true_type { \
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-message.h196 inline void StreamHelper(internal::true_type dummy, T* pointer) {
/external/chromium/testing/gtest/include/gtest/
H A Dgtest-message.h202 inline void StreamHelper(internal::true_type /*dummy*/, T* pointer) {
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-message.h206 inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c622 LLVMTypeRef true_type; local
626 true_type = LLVMIntTypeInContext(bld->gallivm->context,
637 val = LLVMBuildTrunc(builder, val, true_type, "");
640 val, LLVMConstNull(true_type), "");
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-message.h202 inline void StreamHelper(internal::true_type /*dummy*/, T* pointer) {
/external/clang/test/SemaTemplate/
H A Doverload-candidates.cpp89 typedef integral_constant<bool, true> true_type; typedef in namespace:std

Completed in 850 milliseconds

123