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

/external/clang/test/Headers/
H A Darm64-apple-ios-types.cpp4 struct true_type { struct
13 template <class _Tp> struct is_same<_Tp, _Tp> : public true_type {};
H A Dthumbv7-apple-ios-types.cpp4 struct true_type { struct
13 template <class _Tp> struct is_same<_Tp, _Tp> : public true_type {};
H A Dx86_64-apple-macosx-types.cpp4 struct true_type { struct
13 template <class _Tp> struct is_same<_Tp, _Tp> : public true_type {};
/external/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/libchrome/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/webrtc/webrtc/base/
H A Dtemplate_util.h31 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/clang/test/SemaTemplate/
H A Doverload-candidates.cpp91 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/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/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/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/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/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h1244 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
1250 struct is_pointer<T*> : public true_type {};
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1526 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
1532 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/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-port.h1893 typedef bool_constant<true> true_type; typedef in namespace:testing::internal
1899 struct is_pointer<T*> : public true_type {};
/external/opencv3/modules/highgui/src/
H A Dppltasks_winrt.h468 template <typename _ReturnType, typename _Function> auto _IsCallable(_Function _Func, int, int, int) -> decltype(_Func(stdx::declval<task<_ReturnType>*>()), std::true_type()) { (void)_Func; return std::true_type(); } function in class:Concurrency_winrt::details::std
469 template <typename _ReturnType, typename _Function> auto _IsCallable(_Function _Func, int, int, ...) -> decltype(_Func(stdx::declval<_ReturnType*>()), std::true_type()) { (void)_Func; return std::true_type(); } function in class:Concurrency_winrt::details::std
470 template <typename _ReturnType, typename _Function> auto _IsCallable(_Function _Func, int, ...) -> decltype(_Func(), std::true_type()) { (void)_Func; return std::true_type(); } function in class:Concurrency_winrt::details::std
913 template <typename _Function> auto _IsVoidConversionHelper(_Function _Func, int) -> typename decltype(_Func(_To_task()), std::true_type());
916 template <typename T> std::true_type _VoidIsTaskHelper(task<T> _Arg, int);
919 template<typename _Function, typename _ExpectedParameterType, const bool _IsVoidConversion = std::is_same<decltype(_IsVoidConversionHelper(stdx::declval<_Function>(), 0)), std::true_type>::value, const size_t _Count = _FunctorTypeTraits<_Function>::_ArgumentCount>
4080 auto _IsValidTaskCtor(_Ty _Param, int, int, int, int, int, int, int) -> typename decltype(_Param(), std::true_type());
[all...]
/external/opencv3/modules/videoio/src/
H A Dppltasks_winrt.hpp468 template <typename _ReturnType, typename _Function> auto _IsCallable(_Function _Func, int, int, int) -> decltype(_Func(stdx::declval<task<_ReturnType>*>()), std::true_type()) { (void)_Func; return std::true_type(); } function in class:Concurrency_winrt::details::std
469 template <typename _ReturnType, typename _Function> auto _IsCallable(_Function _Func, int, int, ...) -> decltype(_Func(stdx::declval<_ReturnType*>()), std::true_type()) { (void)_Func; return std::true_type(); } function in class:Concurrency_winrt::details::std
470 template <typename _ReturnType, typename _Function> auto _IsCallable(_Function _Func, int, ...) -> decltype(_Func(), std::true_type()) { (void)_Func; return std::true_type(); } function in class:Concurrency_winrt::details::std
913 template <typename _Function> auto _IsVoidConversionHelper(_Function _Func, int) -> typename decltype(_Func(_To_task()), std::true_type());
916 template <typename T> std::true_type _VoidIsTaskHelper(task<T> _Arg, int);
919 template<typename _Function, typename _ExpectedParameterType, const bool _IsVoidConversion = std::is_same<decltype(_IsVoidConversionHelper(stdx::declval<_Function>(), 0)), std::true_type>::value, const size_t _Count = _FunctorTypeTraits<_Function>::_ArgumentCount>
4080 auto _IsValidTaskCtor(_Ty _Param, int, int, int, int, int, int, int) -> typename decltype(_Param(), std::true_type());
[all...]
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest.h2306 typedef bool_constant<true> true_type; typedef in namespace:std::tr1
2312 struct is_pointer<T*> : public true_type {};
6598 inline String FormatValueForFailureMessage(internal::true_type /*dummy*/,
8072 inline void StreamHelper(internal::true_type /*dummy*/, T* 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 */,
/external/opencv3/modules/ts/include/opencv2/ts/
H A Dts_gtest.h2776 typedef bool_constant<true> true_type; typedef in namespace:std::tr1
2782 struct is_pointer<T*> : public true_type {};
3329 inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
9556 true_type /* is a pointer */,
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/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) {
9496 true_type /* is a pointer */,

Completed in 6952 milliseconds