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

1234

/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
H A Dis_pointer.pass.cpp12 // is_pointer
21 static_assert( std::is_pointer<T>::value, "");
22 static_assert( std::is_pointer<const T>::value, "");
23 static_assert( std::is_pointer<volatile T>::value, "");
24 static_assert( std::is_pointer<const volatile T>::value, "");
36 static_assert(!std::is_pointer<T>::value, "");
37 static_assert(!std::is_pointer<const T>::value, "");
38 static_assert(!std::is_pointer<volatile T>::value, "");
39 static_assert(!std::is_pointer<const volatile T>::value, "");
H A Dpointer.pass.cpp28 static_assert( std::is_pointer<T>::value, "");
58 static_assert(!std::is_pointer<incomplete_type>::value, "");
H A Darray.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Dclass.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Denum.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Dfloating_point.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Dintegral.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Dlvalue_ref.pass.cpp28 static_assert(!std::is_pointer<T>::value, "");
H A Dmember_object_pointer.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Dnullptr.pass.cpp28 static_assert(!std::is_pointer<T>::value, "");
H A Drvalue_ref.pass.cpp29 static_assert(!std::is_pointer<T>::value, "");
H A Dunion.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Dvoid.pass.cpp27 static_assert(!std::is_pointer<T>::value, "");
H A Dfunction.pass.cpp38 static_assert(!std::is_pointer<T>::value, "");
H A Dmember_function_pointer_no_variadics.pass.cpp29 static_assert(!std::is_pointer<T>::value, "");
/external/llvm/include/llvm/Support/
H A Dtype_traits.h71 !std::is_pointer<UnderlyingT>::value &&
83 T, typename std::enable_if<std::is_pointer<T>::value>::type> {
94 T, typename std::enable_if<std::is_pointer<T>::value>::type> {
/external/protobuf/src/google/protobuf/stubs/
H A Dtype_traits_unittest.cc230 // Verify that is_pointer is true for some pointer types.
231 EXPECT_TRUE(is_pointer<int*>::value);
232 EXPECT_TRUE(is_pointer<void*>::value);
233 EXPECT_TRUE(is_pointer<string*>::value);
234 EXPECT_TRUE(is_pointer<const void*>::value);
235 EXPECT_TRUE(is_pointer<volatile float* const*>::value);
237 // Verify that is_pointer is false for some non-pointer types.
238 EXPECT_FALSE(is_pointer<void>::value);
239 EXPECT_FALSE(is_pointer<float&>::value);
240 EXPECT_FALSE(is_pointer<lon
[all...]
H A Dtype_traits.h41 // is_pointer
91 template <class T> struct is_pointer;
163 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
166 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
167 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
168 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
169 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
170 template <class T> struct is_pointer<cons struct in namespace:google::protobuf::internal
[all...]
/external/libchrome/base/memory/
H A Draw_scoped_refptr_mismatch_checker.h32 value = (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/libbrillo/brillo/dbus/
H A Ddbus_param_reader.h74 static typename std::enable_if<!std::is_pointer<ParamType>::value, bool>::type
117 std::is_pointer<ParamType>::value, bool>::type
/external/webrtc/webrtc/base/
H A Dtemplate_util.h34 template <class T> struct is_pointer : false_type {}; struct in namespace:rtc
35 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:rtc
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DStreamWriter.h45 static_assert(!std::is_pointer<T>::value,
/external/vixl/src/aarch64/
H A Dabi-aarch64.h89 const bool is_pointer_type = std::is_pointer<T>::value;
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest-message.h114 StreamHelper(typename internal::is_pointer<T>::type(), value);
200 // tr1::type_traits-like is_pointer works, and we can overload on that.

Completed in 1416 milliseconds

1234