| /external/chromium/base/ |
| template_util.h | 29 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/llvm/include/llvm/Support/ |
| type_traits.h | 142 template <typename T> struct is_pointer : false_type {}; struct in namespace:llvm 143 template <typename T> struct is_pointer<T*> : true_type {}; struct in namespace:llvm 144 template <typename T> struct is_pointer<T* const> : true_type {}; struct in namespace:llvm 145 template <typename T> struct is_pointer<T* volatile> : true_type {}; struct in namespace:llvm 146 template <typename T> struct is_pointer<T* const volatile> : true_type {}; struct in namespace:llvm 171 value = (!is_class<UnderlyingT>::value && !is_pointer<UnderlyingT>::value &&
|
| /frameworks/native/include/utils/ |
| TypeHelpers.h | 44 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon20113 46 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value, 48 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value, 50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value, 52 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value 59 is_pointer = false, enumerator in enum:android::aggregate_traits::__anon20114
|
| /frameworks/rs/server/ |
| TypeHelpers.h | 44 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon20296 46 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value, 48 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value, 50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value, 52 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value 59 is_pointer = false, enumerator in enum:android::aggregate_traits::__anon20297
|
| /system/core/libpixelflinger/codeflinger/tinyutils/ |
| TypeHelpers.h | 57 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::tinyutils::traits::__anon43989 58 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value, 59 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value, 60 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value, 61 has_trivial_assign = is_pointer || trait_trivial_assign<TYPE>::value 68 is_pointer = false, enumerator in enum:android::tinyutils::aggregate_traits::__anon43990
|
| /external/stlport/stlport/stl/ |
| boost_type_traits.h | 34 #include <boost/type_traits/is_pointer.hpp> 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon15595 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon15609 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|
| /ndk/sources/cxx-stl/stlport/stlport/stl/ |
| boost_type_traits.h | 34 #include <boost/type_traits/is_pointer.hpp> 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon22101 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon22115 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|
| /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
| boost_type_traits.h | 34 #include <boost/type_traits/is_pointer.hpp> 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon33127 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon33141 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|
| /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
| boost_type_traits.h | 34 #include <boost/type_traits/is_pointer.hpp> 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon34225 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon34239 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|
| /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
| boost_type_traits.h | 34 #include <boost/type_traits/is_pointer.hpp> 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon38897 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon38911 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|
| /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
| boost_type_traits.h | 34 #include <boost/type_traits/is_pointer.hpp> 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon43360 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon43374 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|
| /external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
| gtest-port.h | 90 // 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/ |
| temp_class_spec.cpp | 3 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/open-vcdiff/gtest/include/gtest/internal/ |
| gtest-port.h | 122 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. 807 // so a tr1::type_traits-like is_pointer works. 823 struct is_pointer : public false_type {}; struct in namespace:testing::internal 826 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal [all...] |
| /external/protobuf/gtest/include/gtest/internal/ |
| gtest-port.h | 122 // 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 [all...] |
| /external/chromium/testing/gtest/include/gtest/internal/ |
| gtest-port.h | 141 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. 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 [all...] |
| /external/gtest/include/gtest/internal/ |
| gtest-port.h | 142 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. 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 [all...] |
| /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
| gtest-port.h | 142 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. 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 [all...] |
| /external/llvm/utils/unittest/googletest/include/gtest/internal/ |
| gtest-port.h | 143 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. 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 [all...] |
| /external/clang/test/SemaCXX/ |
| type-traits.cpp | 672 void is_pointer() function [all...] |
| /external/ceres-solver/internal/ceres/gtest/ |
| gtest.h | 237 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. 2535 struct is_pointer : public false_type {}; struct in namespace:std::tr1 2538 struct is_pointer<T*> : public true_type {}; struct in namespace:std::tr1 [all...] |