Searched refs:is_pointer (Results 1 - 25 of 40) 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/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::__anon13638
55 typedef typename __bool2type<is_pointer>::_Ret _Ret;
126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon13652
127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
/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/llvm/include/llvm/Support/
H A Dtype_traits.h142 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 &&
/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.h114 StreamHelper(typename internal::is_pointer<T>::type(), value);
200 // tr1::type_traits-like is_pointer works, and we can overload on that.
/external/libvpx/libvpx/third_party/googletest/src/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.
/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.
/external/open-vcdiff/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/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/open-vcdiff/gtest/include/gtest/internal/
H A Dgtest-port.h122 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
807 // so a tr1::type_traits-like is_pointer works.
823 struct is_pointer : public false_type {}; struct in namespace:testing::internal
826 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/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
/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/gtest/include/gtest/internal/
H A Dgtest-port.h142 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1475 // so a tr1::type_traits-like is_pointer works.
1491 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1494 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-port.h142 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
1457 // so a tr1::type_traits-like is_pointer works.
1473 struct is_pointer : public false_type {}; struct in namespace:testing::internal
1476 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 462 milliseconds

12