Home
last modified time | relevance | path

Searched defs:is_pointer (Results 1 – 20 of 20) sorted by relevance

/external/cronet/tot/third_party/llvm-libc/src/src/__support/CPP/type_traits/
Dis_pointer.h20 template <typename T> struct is_pointer : cpp::false_type {}; struct
/external/cronet/stable/third_party/llvm-libc/src/src/__support/CPP/type_traits/
Dis_pointer.h20 template <typename T> struct is_pointer : cpp::false_type {}; struct
/external/llvm-libc/src/__support/CPP/type_traits/
Dis_pointer.h20 template <typename T> struct is_pointer : cpp::false_type {}; struct
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__type_traits/
Dis_pointer.h25 struct _LIBCPP_TEMPLATE_VIS is_pointer : _BoolConstant<__is_pointer(_Tp)> {}; struct
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__type_traits/
Dis_pointer.h25 struct _LIBCPP_TEMPLATE_VIS is_pointer : _BoolConstant<__is_pointer(_Tp)> {}; struct
/external/cronet/tot/third_party/libc++/src/include/__type_traits/
Dis_pointer.h25 struct _LIBCPP_TEMPLATE_VIS is_pointer : _BoolConstant<__is_pointer(_Tp)> {}; struct
/external/cronet/stable/third_party/libc++/src/include/__type_traits/
Dis_pointer.h25 struct _LIBCPP_TEMPLATE_VIS is_pointer : _BoolConstant<__is_pointer(_Tp)> {}; struct
/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dis_pointer.hpp29 template <class T> struct is_pointer : public integral_constant<bool, __is_pointer(T)>{}; struct
/external/clang/test/SemaTemplate/
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]; argument
/external/OpenCL-CTS/test_conformance/api/
Dtest_kernel_arg_info.cpp343 const bool is_pointer) in get_expected_arg_type()
391 create_expected_arg_info(const KernelArgInfo& kernel_argument, bool is_pointer) in create_expected_arg_info()
619 bool is_pointer = !is_private; in run_scalar_vector_tests() local
735 const bool is_pointer = false; in run_pipe_tests() local
789 bool is_pointer = false; in run_sampler_test() local
809 bool is_pointer = false; in run_image_tests() local
/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dunique_ptr_meta_utils.hpp304 struct is_pointer struct
306 static const bool value = false;
310 struct is_pointer<T*> struct
312 static const bool value = true;
Dtype_traits.hpp503 struct is_pointer struct
504 { static const bool value = false; };
507 struct is_pointer<T*> struct
508 { static const bool value = true; };
/external/mesa3d/src/mapi/glapi/gen/
Dtypeexpr.py264 def is_pointer(self): member in type_expression
Dgl_XML.py484 def is_pointer(self): member in gl_parameter
/external/rust/crabbyavif/src/internal_utils/
Dpixels.rs159 pub(crate) fn is_pointer(&self) -> bool { in is_pointer() method
/external/sdv/vsomeip/third_party/boost/serialization/src/
Dbasic_iarchive.cpp89 bool is_pointer; member
/external/rust/android-crates-io/crates/diplomat_core/src/ast/
Dtypes.rs1157 pub fn is_pointer(&self) -> bool { in is_pointer() method
/external/flatbuffers/src/
Didl_gen_cpp.cpp3320 const bool is_pointer = IsVectorOfPointers(field); in GenUnpackFieldStatement() local
3378 const bool is_pointer = IsPointer(field); in GenUnpackFieldStatement() local
/external/stg/
Dabigail_reader.cc1107 void Abigail::ProcessPointer(const std::string& id, bool is_pointer, in ProcessPointer()
/external/clang/test/SemaCXX/
Dtype-traits.cpp764 void is_pointer() in is_pointer() function