Home
last modified time | relevance | path

Searched refs:is_pod (Results 1 – 14 of 14) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
Dis_pod.pass.cpp19 static_assert( std::is_pod<T>::value, ""); in test_is_pod()
20 static_assert( std::is_pod<const T>::value, ""); in test_is_pod()
21 static_assert( std::is_pod<volatile T>::value, ""); in test_is_pod()
22 static_assert( std::is_pod<const volatile T>::value, ""); in test_is_pod()
28 static_assert(!std::is_pod<T>::value, ""); in test_is_not_pod()
29 static_assert(!std::is_pod<const T>::value, ""); in test_is_not_pod()
30 static_assert(!std::is_pod<volatile T>::value, ""); in test_is_not_pod()
31 static_assert(!std::is_pod<const volatile T>::value, ""); in test_is_not_pod()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
Dtype_with_alignment.hpp170 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::max_align,true)
171 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<1> ,true)
172 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<2> ,true)
173 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<4> ,true)
174 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<8> ,true)
175 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<10> ,true)
176 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<16> ,true)
177 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<32> ,true)
184 struct is_pod< ::boost::detail::lower_alignment<Align> > struct
242 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a2,true)
[all …]
Dis_pod.hpp89 enum { is_pod = ::boost::is_POD<ArrayType>::value }; // MSVC workaround
90 typedef typename bool_to_yes_no_type<is_pod>::type type;
124 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,void,true)
127 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,void const,true)
128 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,void volatile,true)
129 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,void const volatile,true)
135 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pod,T,::boost::detail::is_pod_impl<T>::value)
Dhas_trivial_constructor.hpp30 ::boost::is_pod<T>::value,
36 ::boost::is_pod<T>::value,
Dhas_trivial_copy.hpp35 ::boost::is_pod<T>::value,
Dintrinsics.hpp89 # define BOOST_HAS_TRIVIAL_COPY(T) (__has_trivial_copy(T)|| ( ::boost::is_pod<T>::value && !::boo…
90 # define BOOST_HAS_TRIVIAL_ASSIGN(T) (__has_trivial_assign(T) || ( ::boost::is_pod<T>::value && !…
91 # define BOOST_HAS_TRIVIAL_DESTRUCTOR(T) (__has_trivial_destructor(T) || ::boost::is_pod<T>::valu…
135 …ined(__GLIBCXX__) || (__GLIBCXX__ >= 20080306 && __GLIBCXX__ != 20080519)) && __has_feature(is_pod)
195 # define BOOST_INTEL_TT_OPTS || is_pod<T>::value
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.types/
Dmax_align_t.pass.cpp20 static_assert(std::is_pod<std::max_align_t>::value, in main()
/ndk/sources/cxx-stl/stlport/stlport/
Dtype_traits498 struct is_pod :
514 public integral_constant<bool, is_pod<_Tp>::value>
519 public integral_constant<bool, is_pod<_Tp>::value>
524 public integral_constant<bool, is_pod<_Tp>::value>
529 public integral_constant<bool, is_pod<_Tp>::value>
534 public integral_constant<bool, is_pod<_Tp>::value>
539 public integral_constant<bool, is_pod<_Tp>::value>
544 public integral_constant<bool, is_pod<_Tp>::value>
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
Daligned_storage.hpp169 struct is_pod<boost::detail::aligned_storage::aligned_storage_imp<size_,alignment_> >
/ndk/sources/cxx-stl/stlport/stlport/stl/
Dboost_type_traits.h82 enum { pod = ::boost::is_pod<_Tp>::value };
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dtype_traits86 template <class T> struct is_pod;
2964 // is_pod
2966 #if __has_feature(is_pod) || defined(_LIBCPP_HAS_TYPE_TRAITS)
2968 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_pod
2973 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_pod
Dstring1268 static_assert(is_pod<value_type>::value, "Character type of basic_string must be a POD");
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk4257 $(call gen-test, utilities/meta/meta.unary/meta.unary.prop/is_pod)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk4266 $(call gen-test, utilities/meta/meta.unary/meta.unary.prop/is_pod)