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

1 2 3

  /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/astl/include/
type_traits.h 49 // 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<_T>::value)> { }
    [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::__anon12794
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon12808
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::__anon19559
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon19573
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
  /prebuilts/ndk/android-ndk-r5/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::__anon30137
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon30151
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
  /prebuilts/ndk/android-ndk-r6/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::__anon31235
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon31249
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
  /prebuilts/ndk/android-ndk-r7/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::__anon35907
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon35921
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
  /system/core/libpixelflinger/tinyutils/
TypeHelpers.h 47 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon36544
48 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
49 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
51 has_trivial_assign = is_pointer || trait_trivial_assign<TYPE>::value
58 is_pointer = false, enumerator in enum:android::aggregate_traits::__anon36545
  /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/llvm/include/llvm/Support/
type_traits.h 130 template <typename T> struct is_pointer : false_type {}; struct in namespace:llvm
131 template <typename T> struct is_pointer<T*> : true_type {}; struct in namespace:llvm
132 template <typename T> struct is_pointer<T* const> : true_type {}; struct in namespace:llvm
133 template <typename T> struct is_pointer<T* volatile> : true_type {}; struct in namespace:llvm
134 template <typename T> struct is_pointer<T* const volatile> : true_type {}; struct in namespace:llvm
155 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::__anon17270
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::__anon17271
  /external/astl/tests/
test_type_traits.cpp 101 using std::is_pointer;
102 EXPECT_TRUE(is_pointer<float>::value == false);
103 EXPECT_TRUE(is_pointer<int *>::value == true);
  /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/android-ndk-r5/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/android-ndk-r6/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/android-ndk-r7/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/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
unique_ptr.h 116 { static_assert(!std::is_pointer<deleter_type>::value,
122 { static_assert(!std::is_pointer<deleter_type>::value,
138 { static_assert(!std::is_pointer<deleter_type>::value,
278 { static_assert(!std::is_pointer<deleter_type>::value,
284 { static_assert(!std::is_pointer<deleter_type>::value,
300 { static_assert(!std::is_pointer<deleter_type>::value,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
unique_ptr.h 116 { static_assert(!std::is_pointer<deleter_type>::value,
122 { static_assert(!std::is_pointer<deleter_type>::value,
138 { static_assert(!std::is_pointer<deleter_type>::value,
278 { static_assert(!std::is_pointer<deleter_type>::value,
284 { static_assert(!std::is_pointer<deleter_type>::value,
300 { static_assert(!std::is_pointer<deleter_type>::value,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
unique_ptr.h 99 { static_assert(!std::is_pointer<deleter_type>::value,
105 { static_assert(!std::is_pointer<deleter_type>::value,
247 { static_assert(!std::is_pointer<deleter_type>::value,
253 { static_assert(!std::is_pointer<deleter_type>::value,
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
unique_ptr.h 99 { static_assert(!std::is_pointer<deleter_type>::value,
105 { static_assert(!std::is_pointer<deleter_type>::value,
247 { static_assert(!std::is_pointer<deleter_type>::value,
253 { static_assert(!std::is_pointer<deleter_type>::value,
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
unique_ptr.h 99 { static_assert(!std::is_pointer<deleter_type>::value,
105 { static_assert(!std::is_pointer<deleter_type>::value,
247 { static_assert(!std::is_pointer<deleter_type>::value,
253 { static_assert(!std::is_pointer<deleter_type>::value,
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
unique_ptr.h 99 { static_assert(!std::is_pointer<deleter_type>::value,
105 { static_assert(!std::is_pointer<deleter_type>::value,
247 { static_assert(!std::is_pointer<deleter_type>::value,
253 { static_assert(!std::is_pointer<deleter_type>::value,

Completed in 870 milliseconds

1 2 3