/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
is_pointer.hpp | 12 // Fixed is_pointer, is_reference, is_const, is_volatile, is_same, 46 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pointer,T,__is_pointer(T)) 93 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pointer,T,::boost::detail::is_pointer_impl<T>::value) 96 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T&,false) 97 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T& const,false) 98 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T& volatile,false) 99 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T& const volatile,false) 145 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pointer,void,false) 147 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pointer,void const,false) 148 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pointer,void volatile,false [all...] |
is_scalar.hpp | 14 #include <boost/type_traits/is_pointer.hpp> 33 ::boost::is_pointer<T>::value,
|
/external/chromium/base/ |
template_util_unittest.cc | 19 EXPECT_FALSE(is_pointer<int>::value); 20 EXPECT_FALSE(is_pointer<int&>::value); 21 EXPECT_TRUE(is_pointer<int*>::value); 22 EXPECT_TRUE(is_pointer<const int*>::value);
|
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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
type_traits.h | 40 // 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<const volatile T> : is_pointer<T> { } struct in namespace:google::protobuf::internal [all...] |
type_traits_unittest.cc | 227 // Verify that is_pointer is true for some pointer types. 228 EXPECT_TRUE(is_pointer<int*>::value); 229 EXPECT_TRUE(is_pointer<void*>::value); 230 EXPECT_TRUE(is_pointer<string*>::value); 231 EXPECT_TRUE(is_pointer<const void*>::value); 232 EXPECT_TRUE(is_pointer<volatile float* const*>::value); 234 // Verify that is_pointer is false for some non-pointer types. 235 EXPECT_FALSE(is_pointer<void>::value); 236 EXPECT_FALSE(is_pointer<float&>::value); 237 EXPECT_FALSE(is_pointer<long>::value) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/ |
type_utils.hpp | 57 using std::tr1::is_pointer; 81 value = is_const<T>::value && is_pointer<T>::value 100 || is_pointer<typename remove_const<T>::type>::value
|
/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 && 218 typename enable_if<is_pointer<T> >::type> { 228 struct add_const_past_pointer<T, typename enable_if<is_pointer<T> >::type> {
|
/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::__anon26647 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon26661 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::__anon33172 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon33186 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::__anon44269 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon44283 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::__anon45367 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon45381 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::__anon50039 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon50053 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::__anon54502 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon54516 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|