Searched refs:is_pointer (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium/base/
H A Dtemplate_util_unittest.cc19 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);
H A Dtemplate_util.h29 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/
H A Dtype_traits.h49 // 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<_
[all...]
/external/stlport/stlport/stl/
H A Dboost_type_traits.h34 #include <boost/type_traits/is_pointer.hpp>
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_IsPtr::__anon10023
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon10037
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
/external/astl/tests/
H A Dtest_type_traits.cpp101 using std::is_pointer;
102 EXPECT_TRUE(is_pointer<float>::value == false);
103 EXPECT_TRUE(is_pointer<int *>::value == true);
/external/clang/test/SemaTemplate/
H A Dtemp_class_spec.cpp3 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/chromium/net/socket/
H A Dclient_socket_pool.h165 COMPILE_ASSERT(!base::is_pointer<scoped_refptr<SocketParams> >::value,
H A Dclient_socket_pool_manager.h58 COMPILE_ASSERT(base::is_pointer<Value>::value,
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-message.h109 StreamHelper(typename internal::is_pointer<T>::type(), value);
194 // tr1::type_traits-like is_pointer works, and we can overload on that.
/external/chromium/testing/gtest/include/gtest/
H A Dgtest-message.h114 StreamHelper(typename internal::is_pointer<T>::type(), value);
200 // tr1::type_traits-like is_pointer works, and we can overload on that.
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/gtest/include/gtest/
H A Dgtest-message.h109 StreamHelper(typename internal::is_pointer<T>::type(), value);
194 // tr1::type_traits-like is_pointer works, and we can overload on that.
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h114 StreamHelper(typename internal::is_pointer<T>::type(), value);
200 // tr1::type_traits-like is_pointer works, and we can overload on that.
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h109 StreamHelper(typename internal::is_pointer<T>::type(), value);
194 // tr1::type_traits-like is_pointer works, and we can overload on that.
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-port.h90 // 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
H A Dgtest-internal.h195 // tr1::type_traits-like is_pointer works, and we can overload on that.
214 typename internal::is_pointer<T>::type(), value);
/external/chromium/base/memory/
H A Draw_scoped_refptr_mismatch_checker.h38 value = (is_pointer<T>::value &&
/external/chromium/testing/gmock/test/
H A Dgmock-internal-utils_test.cc480 TEST(TypeTraitsTest, is_pointer) {
481 EXPECT_FALSE(is_pointer<int>::value);
482 EXPECT_FALSE(is_pointer<char&>::value);
483 EXPECT_TRUE(is_pointer<const int*>::value);
/external/gtest/include/gtest/internal/
H A Dgtest-port.h113 // 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
H A Dgtest-internal.h208 // 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
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h122 // 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
H A Dgtest-internal.h203 // 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
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-port.h141 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1441 // so a tr1::type_traits-like is_pointer works.
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
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h143 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1462 // so a tr1::type_traits-like is_pointer works.
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

Completed in 403 milliseconds

12