/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
D | is_pointer.hpp | 46 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pointer,T,__is_pointer(T)) 93 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pointer,T,::boost::detail::is_pointer_impl<T>::value) 96 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T&,false) 97 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T& const,false) 98 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T& volatile,false) 99 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_pointer,T& const volatile,false) 145 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pointer,void,false) 147 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pointer,void const,false) 148 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pointer,void volatile,false) 149 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pointer,void const volatile,false) [all …]
|
D | is_scalar.hpp | 33 ::boost::is_pointer<T>::value,
|
D | remove_pointer.hpp | 68 typedef typename remove_pointer_imp3<T, ::boost::is_pointer<T>::value>::type type;
|
/ndk/sources/cxx-stl/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;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
D | indirect_traits.hpp | 191 is_pointer<T> 234 is_pointer<V> 277 : mpl::if_<is_pointer<T>, is_pointer_to_function_aux<T>, mpl::bool_<false> >::type 474 = (is_pointer<T>::value
|
D | call_traits.hpp | 88 ::boost::is_pointer<T>::value,
|
D | iterator.hpp | 405 is_pointer<Iterator>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/ |
D | rvalue_ref.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_rvalue_ref()
|
D | lvalue_ref.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_lvalue_ref()
|
D | void.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_void_imp()
|
D | floating_point.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_floating_point_imp()
|
D | member_object_pointer.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_member_object_pointer_imp()
|
D | union.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_union_imp()
|
D | nullptr.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_nullptr_imp()
|
D | class.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_class_imp()
|
D | pointer.pass.cpp | 26 static_assert( std::is_pointer<T>::value, ""); in test_pointer_imp()
|
D | array.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_array_imp()
|
D | enum.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_enum_imp()
|
D | function.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_function_imp()
|
D | integral.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_integral_imp()
|
D | member_function_pointer.pass.cpp | 26 static_assert(!std::is_pointer<T>::value, ""); in test_member_function_pointer_imp()
|
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
D | gtest-message.h | 109 StreamHelper(typename internal::is_pointer<T>::type(), value);
|
D | gtest-printers.h | 376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os); in PrintTo()
|
/ndk/sources/cxx-stl/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
|
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-port.h | 1621 struct is_pointer : public false_type {}; 1624 struct is_pointer<T*> : public true_type {};
|