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

  /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...]
  /prebuilt/linux-x86/toolchain/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
  /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::__anon7555
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon7569
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::__anon11120
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon11134
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
  /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);
  /frameworks/base/include/utils/
TypeHelpers.h 56 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon8854
58 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,
60 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,
62 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value,
64 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value
71 is_pointer = false, enumerator in enum:android::aggregate_traits::__anon8855
  /system/core/libpixelflinger/tinyutils/
TypeHelpers.h 47 is_pointer = trait_pointer<TYPE>::value, enumerator in enum:android::traits::__anon17427
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::__anon17428
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-message.h 109 StreamHelper(typename internal::is_pointer<T>::type(), value);
194 // tr1::type_traits-like is_pointer works, and we can overload on that.
  /external/gtest/include/gtest/
gtest-message.h 109 StreamHelper(typename internal::is_pointer<T>::type(), value);
194 // tr1::type_traits-like is_pointer works, and we can overload on that.
  /external/protobuf/gtest/include/gtest/
gtest-message.h 109 StreamHelper(typename internal::is_pointer<T>::type(), value);
194 // tr1::type_traits-like is_pointer works, and we can overload on that.
  /prebuilt/linux-x86/toolchain/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,
  /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
gtest-internal.h 195 // tr1::type_traits-like is_pointer works, and we can overload on that.
214 typename internal::is_pointer<T>::type(), value);
  /external/gtest/include/gtest/internal/
gtest-port.h 113 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
692 // so a tr1::type_traits-like is_pointer works.
708 struct is_pointer : public false_type {}; struct in namespace:testing::internal
711 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
gtest-internal.h 208 // for T and T*, so a tr1::type_traits-like is_pointer works, and we
228 typename internal::is_pointer<T>::type(), value);
233 // These are needed as the above solution using is_pointer has the
    [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...]
gtest-internal.h 203 // for T and T*, so a tr1::type_traits-like is_pointer works, and we
223 typename internal::is_pointer<T>::type(), value);
228 // These are needed as the above solution using is_pointer has the
    [all...]

Completed in 398 milliseconds