/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()
|
/external/llvm-project/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/ |
D | is_pointer.pass.cpp | 20 static_assert( std::is_pointer<T>::value, ""); in test_is_pointer() 21 static_assert( std::is_pointer<const T>::value, ""); in test_is_pointer() 22 static_assert( std::is_pointer<volatile T>::value, ""); in test_is_pointer() 23 static_assert( std::is_pointer<const volatile T>::value, ""); in test_is_pointer() 35 static_assert(!std::is_pointer<T>::value, ""); in test_is_not_pointer() 36 static_assert(!std::is_pointer<const T>::value, ""); in test_is_not_pointer() 37 static_assert(!std::is_pointer<volatile T>::value, ""); in test_is_not_pointer() 38 static_assert(!std::is_pointer<const volatile T>::value, ""); in test_is_not_pointer()
|
D | pointer.pass.cpp | 27 static_assert( std::is_pointer<T>::value, ""); in test_pointer_imp() 57 static_assert(!std::is_pointer<incomplete_type>::value, ""); in main()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | host_or_device_scalar.h | 39 bool is_pointer() const { return is_pointer_; } in is_pointer() function 41 CHECK(is_pointer()); in pointer() 45 CHECK(!is_pointer()); in value() 103 if (other.is_pointer()) { in HostOrDeviceScalar() 110 bool is_pointer() const { return is_pointer_; } in is_pointer() function 113 CHECK(is_pointer()); in pointer() 119 CHECK(!is_pointer()); in value() 124 CHECK(is_pointer()); in opaque_pointer() 128 CHECK(!is_pointer()); in opaque_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: 217 is_pointer = re.search('\*', line) 219 if is_pointer is not None: 220 is_pointer = True 222 is_pointer = False 257 if is_const and is_pointer: 270 elif is_pointer: 300 … type, name, idx+1, is_pointer, is_pointer_pointer, is_array, is_array_array,
|
/external/OpenCL-CTS/test_conformance/api/ |
D | test_kernel_arg_info.cpp | 342 const bool is_pointer) in get_expected_arg_type() argument 382 if (is_pointer && ret.back() != '*') in get_expected_arg_type() 390 create_expected_arg_info(const KernelArgInfo& kernel_argument, bool is_pointer) in create_expected_arg_info() argument 398 if ((is_pointer && !isdigit(type_string.back() - 1)) in create_expected_arg_info() 402 get_expected_arg_type(type_string, is_pointer); in create_expected_arg_info() 411 if (!is_pointer) in create_expected_arg_info() 617 bool is_pointer = !is_private; in run_scalar_vector_tests() local 647 if (is_restrict && !is_pointer) in run_scalar_vector_tests() 653 if (is_pipe && is_pointer) in run_scalar_vector_tests() 667 if (is_pointer) in run_scalar_vector_tests() [all …]
|
/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/llvm-project/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-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/llvm-project/llvm/include/llvm/Support/ |
D | type_traits.h | 36 !std::is_pointer<UnderlyingT>::value && 48 T, std::enable_if_t<std::is_pointer<T>::value>> { 58 struct add_const_past_pointer<T, std::enable_if_t<std::is_pointer<T>::value>> { 68 std::enable_if_t<std::is_pointer<T>::value>> {
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | type_traits.h | 36 !std::is_pointer<UnderlyingT>::value && 48 T, typename std::enable_if<std::is_pointer<T>::value>::type> { 59 T, typename std::enable_if<std::is_pointer<T>::value>::type> { 69 T, typename std::enable_if<std::is_pointer<T>::value>::type> {
|
/external/llvm-project/clang/lib/AST/Interp/ |
D | Source.h | 59 static std::enable_if_t<!std::is_pointer<T>::value, T> 66 static std::enable_if_t<std::is_pointer<T>::value, T>
|
/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,
|
/external/llvm-project/libcxx/test/libcxx/type_traits/ |
D | is_pointer.arc.pass.mm | 15 // std::is_pointer 25 static_assert(std::is_pointer<T>::value, "");
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
D | str_cat.h | 143 !std::is_pointer<Int>::value>::type* = nullptr) 149 !std::is_pointer<Int>::value>::type* = nullptr) 155 !std::is_pointer<Int>::value>::type* = nullptr) 161 !std::is_pointer<Int>::value>::type* = nullptr)
|
/external/libtextclassifier/abseil-cpp/absl/strings/ |
D | str_cat.h | 143 !std::is_pointer<Int>::value>::type* = nullptr) 149 !std::is_pointer<Int>::value>::type* = nullptr) 155 !std::is_pointer<Int>::value>::type* = nullptr) 161 !std::is_pointer<Int>::value>::type* = nullptr)
|
/external/abseil-cpp/absl/strings/ |
D | str_cat.h | 143 !std::is_pointer<Int>::value>::type* = nullptr) 149 !std::is_pointer<Int>::value>::type* = nullptr) 155 !std::is_pointer<Int>::value>::type* = nullptr) 161 !std::is_pointer<Int>::value>::type* = nullptr)
|
/external/webrtc/third_party/abseil-cpp/absl/strings/ |
D | str_cat.h | 143 !std::is_pointer<Int>::value>::type* = nullptr) 149 !std::is_pointer<Int>::value>::type* = nullptr) 155 !std::is_pointer<Int>::value>::type* = nullptr) 161 !std::is_pointer<Int>::value>::type* = nullptr)
|
/external/angle/third_party/abseil-cpp/absl/strings/ |
D | str_cat.h | 143 !std::is_pointer<Int>::value>::type* = nullptr) 149 !std::is_pointer<Int>::value>::type* = nullptr) 155 !std::is_pointer<Int>::value>::type* = nullptr) 161 !std::is_pointer<Int>::value>::type* = nullptr)
|
/external/openscreen/third_party/abseil/src/absl/strings/ |
D | str_cat.h | 143 !std::is_pointer<Int>::value>::type* = nullptr) 149 !std::is_pointer<Int>::value>::type* = nullptr) 155 !std::is_pointer<Int>::value>::type* = nullptr) 161 !std::is_pointer<Int>::value>::type* = nullptr)
|
/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/angle/third_party/vulkan-deps/spirv-tools/src/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 &&
|