/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 | union.pass.cpp | 27 static_assert(!std::is_pointer<T>::value, ""); in test_union_imp()
|
/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/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/ |
D | gen_llvm_types.py | 29 def gen_llvm_type(type, name, idx, is_pointer, is_pointer_pointer, is_array, is_array_array, array_… argument 34 if is_pointer or is_pointer_pointer: 88 if is_pointer: 216 is_pointer = re.search('\*', line) 218 if is_pointer is not None: 219 is_pointer = True 221 is_pointer = False 256 if is_const and is_pointer: 269 elif is_pointer: 299 … type, name, idx+1, is_pointer, is_pointer_pointer, is_array, is_array_array,
|
/external/tensorflow/tensorflow/stream_executor/ |
D | host_or_device_scalar.h | 37 bool is_pointer() const { return is_pointer_; } in is_pointer() function 39 CHECK(is_pointer()); in pointer() 43 CHECK(!is_pointer()); in value()
|
/external/clang/test/SemaTemplate/ |
D | temp_class_spec.cpp | 3 struct is_pointer { struct 8 struct is_pointer<T*> { struct 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-7.0/llvm/include/llvm/Support/ |
D | type_traits.h | 70 !std::is_pointer<UnderlyingT>::value && 82 T, typename std::enable_if<std::is_pointer<T>::value>::type> { 93 T, typename std::enable_if<std::is_pointer<T>::value>::type> { 103 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/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/v8/src/torque/ |
D | utils.h | 57 std::is_pointer<typename T::value_type>::value, int>::type = 0> 72 !std::is_pointer<typename T::value_type>::value, int>::type = 0>
|
/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/v8/src/ |
D | simulator-base.h | 59 static typename std::enable_if<std::is_pointer<T>::value, T>::type 98 static typename std::enable_if<std::is_pointer<T>::value, intptr_t>::type
|
D | lsan.h | 25 static_assert(std::is_pointer<decltype(ptr)>::value || \
|
D | asan.h | 21 (std::is_pointer<decltype(start)>::value || \
|
D | msan.h | 27 static_assert((std::is_pointer<decltype(p)>::value || \
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | tree_iterator.h | 39 static_assert(!std::is_pointer<NodeTy>::value && 133 static_assert(!std::is_pointer<NodeTy>::value &&
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | tree_iterator.h | 39 static_assert(!std::is_pointer<NodeTy>::value && 133 static_assert(!std::is_pointer<NodeTy>::value &&
|
/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/libchrome/base/memory/ |
D | raw_scoped_refptr_mismatch_checker.h | 43 value = std::is_pointer<T>::value &&
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | marshal_XML.py | 80 …if p.is_pointer() and not (p.count or p.counter) and not (self.marshal == 'draw' and p.name == 'in…
|