Home
last modified time | relevance | path

Searched refs:is_array (Results 1 – 25 of 30) sorted by relevance

12

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
Dis_array.hpp32 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_array,T,__is_array(T))
34 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_array,T,false)
36 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T[N],true)
37 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T const[N],true)
38 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T volatile[N],true)
39 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,is_array,T const volatile[N],true)
41 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T[],true)
42 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T const[],true)
43 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T volatile[],true)
44 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_array,T const volatile[],true)
[all …]
Dis_enum.hpp121 , is_array<T>::value
131 , is_array<T>::value
142 , is_array<T>::value
Dis_pod.hpp59 template <bool is_array = false>
115 ::boost::is_array<T>::value
Dis_class.hpp101 ::boost::type_traits::ice_not< ::boost::is_array<T>::value >::value,
111 ::boost::type_traits::ice_not< ::boost::is_array<T>::value >::value,
Dis_member_function_pointer.hpp89 , ::boost::is_array<T>::value
Dis_member_pointer.hpp93 , ::boost::is_array<T>::value
Dis_volatile.hpp129 , is_array<T>::value
Dis_const.hpp141 , is_array<T>::value
Dis_pointer.hpp139 , ::boost::is_array<T>::value
Dis_convertible.hpp287 ::boost::is_array<To>::value
303 ::boost::is_array<To>::value
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
Dlvalue_ref.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_lvalue_ref()
Drvalue_ref.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_rvalue_ref()
Dmember_object_pointer.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_member_object_pointer_imp()
Dvoid.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_void_imp()
Dfloating_point.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_floating_point_imp()
Darray.pass.cpp25 static_assert( std::is_array<T>::value, ""); in test_array_imp()
Dnullptr.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_nullptr_imp()
Denum.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_enum_imp()
Dpointer.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_pointer_imp()
Dunion.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_union_imp()
Dclass.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_class_imp()
Dfunction.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_function_imp()
Dintegral.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_integral_imp()
Dmember_function_pointer.pass.cpp25 static_assert(!std::is_array<T>::value, ""); in test_member_function_pointer_imp()
/ndk/sources/cxx-stl/stlport/stlport/
Dtype_traits240 struct is_array :
245 struct is_array<_Tp[_Sz]> :
250 struct is_array<_Tp[]> :
375 || is_array<_Tp>::value
401 is_array<_Tp>::value ||
749 typedef typename detail::_decay_aux1<is_array<_U>::value,_U>::type type;

12