Searched defs:is_pointer (Results 1 - 17 of 17) 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/webrtc/webrtc/base/
H A Dtemplate_util.h34 template <class T> struct is_pointer : false_type {}; struct in namespace:rtc
35 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:rtc
/external/protobuf/src/google/protobuf/stubs/
H A Dtype_traits.h41 // is_pointer
91 template <class T> struct is_pointer;
163 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
166 template <class T> struct is_pointer : false_type { }; struct in namespace:google::protobuf::internal
167 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:google::protobuf::internal
168 template <class T> struct is_pointer<const T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
169 template <class T> struct is_pointer<volatile T> : is_pointer<T> { }; struct in namespace:google::protobuf::internal
170 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.h145 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1470 // so a tr1::type_traits-like is_pointer works.
1486 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1489 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/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h143 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1462 // so a tr1::type_traits-like is_pointer works.
1478 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1481 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp764 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/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h218 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2240 // so a tr1::type_traits-like is_pointer works.
2262 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2265 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-port.h216 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2210 // so a tr1::type_traits-like is_pointer works.
2226 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2229 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/mesa3d/src/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/v8/testing/gtest/include/gtest/internal/
H A Dgtest-port.h216 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2201 // so a tr1::type_traits-like is_pointer works.
2217 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2220 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-port.h152 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1880 // so a tr1::type_traits-like is_pointer works.
1896 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1899 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/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/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/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*/,
9568 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
18937 typename EnableIf<!is_pointer<T
[all...]

Completed in 435 milliseconds