/external/astl/include/ |
D | type_traits.h | 122 template<typename> struct is_pointer : public false_type { }; struct 125 struct is_pointer<_T*>: public true_type { }; 128 struct is_pointer<_T* const>: public true_type { }; 131 struct is_pointer<_T* volatile>: public true_type { }; 134 struct is_pointer<_T* const volatile>: public true_type { }; 145 : public integral_constant<bool, (is_arithmetic<_T>::value || is_pointer<_T>::value)> { };
|
/external/chromium/base/ |
D | template_util_unittest.cc | 19 EXPECT_FALSE(is_pointer<int>::value); in TEST() 20 EXPECT_FALSE(is_pointer<int&>::value); in TEST() 21 EXPECT_TRUE(is_pointer<int*>::value); in TEST() 22 EXPECT_TRUE(is_pointer<const int*>::value); in TEST()
|
D | template_util.h | 29 template <class T> struct is_pointer : false_type {}; struct 30 template <class T> struct is_pointer<T*> : true_type {};
|
/external/stlport/stlport/stl/ |
D | boost_type_traits.h | 54 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator 55 typedef typename __bool2type<is_pointer>::_Ret _Ret; 126 enum { is_pointer = ::boost::is_pointer<_Tp>::value }; enumerator 127 typedef typename __bool2type<is_pointer>::_Ret _IsPointer;
|
/external/clang/test/SemaTemplate/ |
D | temp_class_spec.cpp | 3 struct is_pointer { struct 8 struct is_pointer<T*> { struct 13 struct is_pointer<const T*> { argument 17 int array0[is_pointer<int>::value? -1 : 1]; argument 18 int array1[is_pointer<int*>::value? 1 : -1]; 19 int array2[is_pointer<const int*>::value? 1 : -1];
|
/external/astl/tests/ |
D | test_type_traits.cpp | 101 using std::is_pointer; in testIsPointer() 102 EXPECT_TRUE(is_pointer<float>::value == false); in testIsPointer() 103 EXPECT_TRUE(is_pointer<int *>::value == true); in testIsPointer()
|
/external/chromium/testing/gmock/test/ |
D | gmock-internal-utils_test.cc | 480 TEST(TypeTraitsTest, is_pointer) { in TEST() argument 481 EXPECT_FALSE(is_pointer<int>::value); in TEST() 482 EXPECT_FALSE(is_pointer<char&>::value); in TEST() 483 EXPECT_TRUE(is_pointer<const int*>::value); in TEST()
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
D | gtest-port.h | 482 struct is_pointer : public false_type {}; struct 485 struct is_pointer<T*> : public true_type {};
|
D | gtest-internal.h | 214 typename internal::is_pointer<T>::type(), value); in FormatForFailureMessage()
|
/external/chromium/net/socket/ |
D | client_socket_pool.h | 165 COMPILE_ASSERT(!base::is_pointer<scoped_refptr<SocketParams> >::value, in CheckIsValidSocketParamsForPool()
|
D | client_socket_pool_manager.h | 58 COMPILE_ASSERT(base::is_pointer<Value>::value, in OwnedPoolMap()
|
/external/stlport/stlport/ |
D | type_traits | 255 struct is_pointer : 259 __CV_SPEC_1(is_pointer,_Tp *,true); 376 || is_pointer<_Tp>::value 402 is_pointer<_Tp>::value || 411 || is_pointer<_Tp>::value
|
/external/protobuf/gtest/include/gtest/ |
D | gtest-message.h | 109 StreamHelper(typename internal::is_pointer<T>::type(), value);
|
/external/llvm/utils/unittest/googletest/include/gtest/ |
D | gtest-message.h | 115 StreamHelper(typename internal::is_pointer<T>::type(), value);
|
/external/chromium/sdch/open-vcdiff/src/gtest/ |
D | gtest-message.h | 109 StreamHelper(typename internal::is_pointer<T>::type(), value);
|
/external/chromium/testing/gtest/include/gtest/ |
D | gtest-message.h | 114 StreamHelper(typename internal::is_pointer<T>::type(), value);
|
/external/gtest/include/gtest/ |
D | gtest-message.h | 109 StreamHelper(typename internal::is_pointer<T>::type(), value);
|
/external/gtest/include/gtest/internal/ |
D | gtest-port.h | 708 struct is_pointer : public false_type {}; struct 711 struct is_pointer<T*> : public true_type {};
|
D | gtest-internal.h | 228 typename internal::is_pointer<T>::type(), value); in FormatForFailureMessage()
|
/external/chromium/base/memory/ |
D | raw_scoped_refptr_mismatch_checker.h | 38 value = (is_pointer<T>::value &&
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-port.h | 815 struct is_pointer : public false_type {}; struct 818 struct is_pointer<T*> : public true_type {};
|
D | gtest-internal.h | 223 typename internal::is_pointer<T>::type(), value); in FormatForFailureMessage()
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 1252 struct is_pointer : public false_type {}; struct 1255 struct is_pointer<T*> : public true_type {};
|
D | gtest-internal.h | 239 typename internal::is_pointer<T>::type(), value); in FormatForFailureMessage()
|
/external/chromium/testing/gtest/include/gtest/internal/ |
D | gtest-port.h | 1457 struct is_pointer : public false_type {}; 1460 struct is_pointer<T*> : public true_type {};
|