Searched refs:is_pointer (Results 1 - 25 of 71) sorted by relevance

123

/external/llvm/include/llvm/Support/
H A Dtype_traits.h60 !std::is_pointer<UnderlyingT>::value &&
71 T, typename std::enable_if<std::is_pointer<T>::value>::type> {
82 T, typename std::enable_if<std::is_pointer<T>::value>::type> {
/external/chromium_org/base/
H A Dtemplate_util_unittest.cc20 // is_pointer<Type>
21 COMPILE_ASSERT(!is_pointer<int>::value, IsPointer);
22 COMPILE_ASSERT(!is_pointer<int&>::value, IsPointer);
23 COMPILE_ASSERT(is_pointer<int*>::value, IsPointer);
24 COMPILE_ASSERT(is_pointer<const int*>::value, IsPointer);
H A Dtemplate_util.h28 template <class T> struct is_pointer : false_type {}; struct in namespace:base
29 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:base
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dtype_traits_unittest.cc227 // Verify that is_pointer is true for some pointer types.
228 EXPECT_TRUE(is_pointer<int*>::value);
229 EXPECT_TRUE(is_pointer<void*>::value);
230 EXPECT_TRUE(is_pointer<string*>::value);
231 EXPECT_TRUE(is_pointer<const void*>::value);
232 EXPECT_TRUE(is_pointer<volatile float* const*>::value);
234 // Verify that is_pointer is false for some non-pointer types.
235 EXPECT_FALSE(is_pointer<void>::value);
236 EXPECT_FALSE(is_pointer<float&>::value);
237 EXPECT_FALSE(is_pointer<lon
[all...]
H A Dtype_traits.h40 // is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
140 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
141 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
143 template <class T> struct is_pointer<cons struct in namespace:google::protobuf::internal
[all...]
/external/stlport/stlport/stl/
H A Dboost_type_traits.h34 #include <boost/type_traits/is_pointer.hpp>
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon31273
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon31287
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
H A Dlvalue_ref.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Drvalue_ref.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Darray.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dclass.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Denum.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dfloating_point.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dfunction.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dintegral.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dmember_function_pointer.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dmember_object_pointer.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dnullptr.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dpointer.pass.cpp26 static_assert( std::is_pointer<T>::value, "");
H A Dunion.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
H A Dvoid.pass.cpp26 static_assert(!std::is_pointer<T>::value, "");
/external/clang/test/SemaTemplate/
H A Dtemp_class_spec.cpp3 struct is_pointer { struct
8 struct is_pointer<T*> { struct
13 struct is_pointer<const T*> { struct
17 int array0[is_pointer<int>::value? -1 : 1];
18 int array1[is_pointer<int*>::value? 1 : -1];
19 int array2[is_pointer<const int*>::value? 1 : -1];
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dtemplate_util.h30 template <class T> struct is_pointer : false_type {}; struct in namespace:i18n::addressinput
31 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:i18n::addressinput
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dtemplate_util.h27 template <class T> struct is_pointer : false_type {}; struct in namespace:i18n::phonenumbers
28 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:i18n::phonenumbers
/external/chromium_org/third_party/webrtc/base/
H A Dtemplate_util.h32 template <class T> struct is_pointer : false_type {}; struct in namespace:rtc
33 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:rtc
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtemplate_util.h34 template <class T> struct is_pointer : false_type {}; struct in namespace:webrtc
35 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:webrtc

Completed in 767 milliseconds

123