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

/external/chromium/base/
H A Dtemplate_util.h29 template <class T> struct is_pointer : false_type {}; struct in namespace:base
30 template <class T> struct is_pointer<T*> : true_type {}; struct in namespace:base
/external/astl/include/
H A Dtype_traits.h49 // const bool is_pointer = is_pointer<_T>::value;
50 // __foo<is_pointer>::foo(val); // concrete impl
121 // is_pointer
122 template<typename> struct is_pointer : public false_type { }; struct in namespace:std
125 struct is_pointer<_T*>: public true_type { }; struct in namespace:std
128 struct is_pointer<_T* const>: public true_type { }; struct in namespace:std
131 struct is_pointer<_T* volatile>: public true_type { }; struct in namespace:std
134 struct is_pointer<_T* const volatile>: public true_type { }; struct in namespace:std
145 : public integral_constant<bool, (is_arithmetic<_T>::value || is_pointer<_
[all...]
/external/llvm/include/llvm/Support/
H A Dtype_traits.h141 template <typename T> struct is_pointer : false_type {}; struct in namespace:llvm
142 template <typename T> struct is_pointer<T*> : true_type {}; struct in namespace:llvm
143 template <typename T> struct is_pointer<T* const> : true_type {}; struct in namespace:llvm
144 template <typename T> struct is_pointer<T* volatile> : true_type {}; struct in namespace:llvm
145 template <typename T> struct is_pointer<T* const volatile> : true_type {}; struct in namespace:llvm
166 value = (!is_class<UnderlyingT>::value && !is_pointer<UnderlyingT>::value &&
/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::__anon12579
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon12593
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-port.h90 // is_pointer - as in TR1; needed on Symbian only.
463 // Defines tr1::is_pointer (only needed for Symbian).
467 // Symbian does not have tr1::type_traits, so we define our own is_pointer
482 struct is_pointer : public false_type {}; struct in namespace:testing::internal
485 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/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/testing/gtest/include/gtest/internal/
H A Dgtest-port.h141 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1441 // so a tr1::type_traits-like is_pointer works.
1457 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1460 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/gtest/include/gtest/internal/
H A Dgtest-port.h142 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1475 // so a tr1::type_traits-like is_pointer works.
1491 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1494 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/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.cpp672 void is_pointer() function

Completed in 154 milliseconds