HomeSort by relevance Sort by last modified time
    Searched refs:is_pointer (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /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/base/
template_util_unittest.cc 20 // is_pointer<Type>
21 COMPILE_ASSERT(!is_pointer<int>::value, IsPointer);
22 COMPILE_ASSERT(!is_pointer<int&>::value, IsPointer);
23 COMPILE_ASSERT(is_pointer<int*>::value, IsPointer);
24 COMPILE_ASSERT(is_pointer<const int*>::value, IsPointer);
  /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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits_unittest.cc 61 using google::protobuf::internal::is_pointer;
247 // Verify that is_pointer is true for some pointer types.
248 EXPECT_TRUE(is_pointer<int*>::value);
249 EXPECT_TRUE(is_pointer<void*>::value);
250 EXPECT_TRUE(is_pointer<string*>::value);
251 EXPECT_TRUE(is_pointer<const void*>::value);
252 EXPECT_TRUE(is_pointer<volatile float* const*>::value);
254 // Verify that is_pointer is false for some non-pointer types.
255 EXPECT_FALSE(is_pointer<void>::value);
256 EXPECT_FALSE(is_pointer<float&>::value)
    [all...]
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...]
  /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::__anon28457
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon28471
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::__anon34981
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon34995
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::__anon46078
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon46092
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::__anon47176
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon47190
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::__anon51848
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon51862
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;

Completed in 735 milliseconds

1 2 3 4 5 6