Searched defs:is_pointer (Results 1 - 13 of 13) sorted by relevance

/external/mesa3d/src/mapi/glapi/gen/
H A Dtypeexpr.py265 def is_pointer(self): member in class:type_expression
H A Dgl_XML.py479 return self.is_pointer()
482 def is_pointer(self): member in class:gl_parameter
483 return self.type_expr.is_pointer()
/external/protobuf/src/google/protobuf/stubs/
H A Dtype_traits.h40 // is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
140 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
141 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
143 template <class T> struct is_pointer<cons struct in namespace:google::protobuf::internal
[all...]
/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/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h144 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1467 // so a tr1::type_traits-like is_pointer works.
1483 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1486 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h142 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1457 // so a tr1::type_traits-like is_pointer works.
1473 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1476 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h131 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1231 // so a tr1::type_traits-like is_pointer works.
1247 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1250 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp741 void is_pointer() function
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-port.h144 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1513 // so a tr1::type_traits-like is_pointer works.
1529 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1532 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/gtest/include/gtest/internal/
H A Dgtest-port.h152 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1605 // so a tr1::type_traits-like is_pointer works.
1621 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1624 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/lldb/source/Core/
H A DDebugger.cpp1740 bool is_pointer = (type_info_flags & ClangASTType::eTypeIsPointer) != 0; local
1743 if ((is_array || is_pointer) && (!is_array_range) && val_obj_display == ValueObject::eValueObjectRepresentationStyleValue) // this should be wrong, but there are some exceptions
1770 else if (is_pointer) // if pointer, value is the address stored
1809 if (!is_array && !is_pointer)
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest.h226 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2293 // so a tr1::type_traits-like is_pointer works.
2309 struct is_pointer : public false_type {}; struct in namespace:std::tr1
2312 struct is_pointer<T*> : public true_type {}; struct in namespace:std::tr1
6592 // for T and T*, so a tr1::type_traits-like is_pointer works, and we
6612 typename internal::is_pointer<T>::type(), value);
6617 // These are needed as the above solution using is_pointer has the
7985 StreamHelper(typename internal::is_pointer<T>::type(), value);
8070 // tr1::type_traits-like is_pointer works, and we can overload on that.
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h248 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2712 // so a tr1::type_traits-like is_pointer works.
2728 struct is_pointer : public false_type {}; struct in namespace:std::tr1
2731 struct is_pointer<T*> : public true_type {}; struct in namespace:std::tr1
3181 StreamHelper(typename internal::is_pointer<T>::type(), value);
3276 // tr1::type_traits-like is_pointer works, and we can overload on that.
3278 inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
3286 inline void StreamHelper(internal::false_type /*is_pointer*/,
9567 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
18936 typename EnableIf<!is_pointer<T
[all...]

Completed in 2946 milliseconds