/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/ |
D | is_pointer.pass.cpp | 21 static_assert( std::is_pointer<T>::value, ""); in test_is_pointer() 22 static_assert( std::is_pointer<const T>::value, ""); in test_is_pointer() 23 static_assert( std::is_pointer<volatile T>::value, ""); in test_is_pointer() 24 static_assert( std::is_pointer<const volatile T>::value, ""); in test_is_pointer() 36 static_assert(!std::is_pointer<T>::value, ""); in test_is_not_pointer() 37 static_assert(!std::is_pointer<const T>::value, ""); in test_is_not_pointer() 38 static_assert(!std::is_pointer<volatile T>::value, ""); in test_is_not_pointer() 39 static_assert(!std::is_pointer<const volatile T>::value, ""); in test_is_not_pointer()
|
D | pointer.pass.cpp | 28 static_assert( std::is_pointer<T>::value, ""); in test_pointer_imp() 58 static_assert(!std::is_pointer<incomplete_type>::value, ""); in main()
|
D | rvalue_ref.pass.cpp | 29 static_assert(!std::is_pointer<T>::value, ""); in test_rvalue_ref()
|
D | lvalue_ref.pass.cpp | 28 static_assert(!std::is_pointer<T>::value, ""); in test_lvalue_ref()
|
D | member_object_pointer.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_member_object_pointer_imp()
|
D | void.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_void_imp()
|
D | nullptr.pass.cpp | 28 static_assert(!std::is_pointer<T>::value, ""); in test_nullptr_imp()
|
D | enum.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_enum_imp()
|
D | union.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_union_imp()
|
D | class.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_class_imp()
|
D | floating_point.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_floating_point_imp()
|
D | array.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_array_imp()
|
D | integral.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_integral_imp()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/scripts/ |
D | gen_llvm_types.py | 77 def gen_llvm_type(type, name, postfix_name, is_pointer, is_pointer_pointer, is_array, is_array_arra… argument 82 if is_pointer or is_pointer_pointer: 116 if is_pointer: 226 is_pointer = re.search("\*", line) 228 if is_pointer is not None: 229 is_pointer = True 231 is_pointer = False 266 if is_const and is_pointer: 279 elif is_pointer: 307 …output_lines += gen_llvm_type(type, name, postfix_name, is_pointer, is_pointer_pointer, is_array, …
|
/external/protobuf/src/google/protobuf/stubs/ |
D | type_traits_unittest.cc | 231 EXPECT_TRUE(is_pointer<int*>::value); in TEST() 232 EXPECT_TRUE(is_pointer<void*>::value); in TEST() 233 EXPECT_TRUE(is_pointer<string*>::value); in TEST() 234 EXPECT_TRUE(is_pointer<const void*>::value); in TEST() 235 EXPECT_TRUE(is_pointer<volatile float* const*>::value); in TEST() 238 EXPECT_FALSE(is_pointer<void>::value); in TEST() 239 EXPECT_FALSE(is_pointer<float&>::value); in TEST() 240 EXPECT_FALSE(is_pointer<long>::value); in TEST() 241 EXPECT_FALSE(is_pointer<vector<int*> >::value); in TEST() 242 EXPECT_FALSE(is_pointer<int[5]>::value); in TEST() [all …]
|
D | type_traits.h | 91 template <class T> struct is_pointer; 166 template <class T> struct is_pointer : false_type { }; 167 template <class T> struct is_pointer<T*> : true_type { }; 168 template <class T> struct is_pointer<const T> : is_pointer<T> { }; 169 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; 170 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { }; 237 is_pointer<T>::value)> { };
|
/external/clang/test/SemaTemplate/ |
D | temp_class_spec.cpp | 3 struct is_pointer { struct 8 struct is_pointer<T*> { argument 13 struct is_pointer<const T*> { argument 17 int array0[is_pointer<int>::value? -1 : 1]; argument 18 int array1[is_pointer<int*>::value? 1 : -1]; 19 int array2[is_pointer<const int*>::value? 1 : -1];
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | type_traits.h | 71 !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/llvm/include/llvm/Support/ |
D | type_traits.h | 71 !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/libbrillo/brillo/dbus/ |
D | dbus_param_reader.h | 74 static typename std::enable_if<!std::is_pointer<ParamType>::value, bool>::type 117 std::is_pointer<ParamType>::value, bool>::type
|
/external/webrtc/webrtc/base/ |
D | template_util.h | 34 template <class T> struct is_pointer : false_type {}; struct 35 template <class T> struct is_pointer<T*> : true_type {};
|
/external/google-breakpad/src/testing/test/ |
D | gmock-internal-utils_test.cc | 480 TEST(TypeTraitsTest, is_pointer) { in TEST() argument 481 EXPECT_FALSE(is_pointer<int>::value); in TEST() 482 EXPECT_FALSE(is_pointer<char&>::value); in TEST() 483 EXPECT_TRUE(is_pointer<const int*>::value); in TEST()
|
/external/v8/testing/gmock/test/ |
D | gmock-internal-utils_test.cc | 523 TEST(TypeTraitsTest, is_pointer) { in TEST() argument 524 EXPECT_FALSE(is_pointer<int>::value); in TEST() 525 EXPECT_FALSE(is_pointer<char&>::value); in TEST() 526 EXPECT_TRUE(is_pointer<const int*>::value); in TEST()
|
/external/googletest/googlemock/test/ |
D | gmock-internal-utils_test.cc | 523 TEST(TypeTraitsTest, is_pointer) { in TEST() argument 524 EXPECT_FALSE(is_pointer<int>::value); in TEST() 525 EXPECT_FALSE(is_pointer<char&>::value); in TEST() 526 EXPECT_TRUE(is_pointer<const int*>::value); in TEST()
|
/external/libchrome/base/memory/ |
D | raw_scoped_refptr_mismatch_checker.h | 32 value = (std::is_pointer<T>::value &&
|