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

/external/chromium_org/third_party/cld/base/
H A Dtype_traits.h13 // is_pointer
67 // is_pointer is false except for pointer types.
68 template <class T> struct is_pointer : false_type { }; struct in namespace:base
69 template <class T> struct is_pointer<T*> : true_type { }; struct in namespace:base
83 is_pointer<T>::value)> { };
/external/chromium_org/base/
H A Dtemplate_util.h28 template <class T> struct is_pointer : false_type {}; struct in namespace:base
29 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:base
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dtemplate_util.h30 template <class T> struct is_pointer : false_type {}; struct in namespace:i18n::addressinput
31 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:i18n::addressinput
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dtemplate_util.h27 template <class T> struct is_pointer : false_type {}; struct in namespace:i18n::phonenumbers
28 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:i18n::phonenumbers
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/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/chromium_org/third_party/webrtc/base/
H A Dtemplate_util.h32 template <class T> struct is_pointer : false_type {}; struct in namespace:rtc
33 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:rtc
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtemplate_util.h34 template <class T> struct is_pointer : false_type {}; struct in namespace:webrtc
35 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:webrtc
/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/stlport/stlport/stl/
H A Dboost_type_traits.h34 #include <boost/type_traits/is_pointer.hpp>
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon31273
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon31287
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
/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/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h122 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
799 // so a tr1::type_traits-like is_pointer works.
815 struct is_pointer : public false_type {}; struct in namespace:testing::internal
818 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h216 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2095 // so a tr1::type_traits-like is_pointer works.
2111 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2114 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp737 void is_pointer() function
/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/chromium_org/third_party/libvpx/source/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...]
/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 1206 milliseconds