Searched defs:true_type (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/cld/base/
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/third_party/protobuf/src/google/protobuf/stubs/
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_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::*)(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/chromium_org/third_party/libaddressinput/src/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/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_org/third_party/webrtc/base/
H A Dtemplate_util.h29 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/
H A Dtemplate_util.h31 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/clang/test/SemaTemplate/
H A Doverload-candidates.cpp89 typedef integral_constant<bool, true> true_type; typedef in namespace:std
/external/eigen/Eigen/src/Core/util/
H A DMeta.h25 struct true_type { enum { value = 1 }; }; struct in namespace:Eigen::internal
/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/v8/src/base/
H A Dsafe_math_impl.h36 typedef integral_constant<bool, true> true_type; typedef in namespace:v8::base::internal
40 template <class T> struct is_same<T, T> : true_type {};
/external/mesa3d/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/eigen/Eigen/src/Core/
H A DGeneralProduct.h240 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const true_type&) { argument
260 template<typename T> struct IsRowMajor : internal::conditional<(int(T::Flags)&RowMajorBit), internal::true_type, internal::false_type>::type {};
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h812 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
818 struct is_pointer<T*> : public true_type {};
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h1470 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
1476 struct is_pointer<T*> : public true_type {};
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h1480 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
1486 struct is_pointer<T*> : public true_type {};
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h1470 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
1476 struct is_pointer<T*> : public true_type {};
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h2108 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
2114 struct is_pointer<T*> : public true_type {};
/external/gtest/include/gtest/internal/
H A Dgtest-port.h1618 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
1624 struct is_pointer<T*> : public true_type {};
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2725 typedef bool_constant<true> true_type; typedef in namespace:std::tr1
2731 struct is_pointer<T*> : public true_type {};
3278 inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
9495 true_type /* is a pointer */,
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2725 typedef bool_constant<true> true_type; typedef in namespace:std::tr1
2731 struct is_pointer<T*> : public true_type {};
3278 inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
9495 true_type /* is a pointer */,

Completed in 2188 milliseconds