Searched refs:is_pod (Results 1 - 15 of 15) sorted by last modified time

/external/stlport/stlport/stl/
H A Dboost_type_traits.h33 #include <boost/type_traits/is_pod.hpp>
82 enum { pod = ::boost::is_pod<_Tp>::value };
/external/libcxx/test/language.support/support.types/
H A Dmax_align_t.disabled.cpp20 static_assert(std::is_pod<std::max_align_t>::value,
21 "std::is_pod<std::max_align_t>::value");
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
H A DAndroid.mk67 test_name := utilities/meta/meta.unary/meta.unary.prop/is_pod
68 test_src := is_pod.pass.cpp
H A Dis_pod.pass.cpp12 // is_pod
19 static_assert( std::is_pod<T>::value, "");
20 static_assert( std::is_pod<const T>::value, "");
21 static_assert( std::is_pod<volatile T>::value, "");
22 static_assert( std::is_pod<const volatile T>::value, "");
28 static_assert(!std::is_pod<T>::value, "");
29 static_assert(!std::is_pod<const T>::value, "");
30 static_assert(!std::is_pod<volatile T>::value, "");
31 static_assert(!std::is_pod<const volatile T>::value, "");
/external/clang/test/Lexer/
H A Dhas_feature_type_traits.cpp83 #if __has_feature(is_pod)
84 int is_pod();
86 // CHECK: int is_pod();
/external/clang/test/SemaCXX/
H A Dlibstdcxx_is_pod_hack.cpp39 #if !__has_feature(is_pod)
H A Dtype-traits.cpp149 void is_pod() function
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-4.cpp202 struct is_pod { struct
206 static int is_pod0[is_pod<X>::value? -1 : 1];
207 static int is_pod1[is_pod<Y>::value? 1 : -1];
349 return is_pod<X>::value; // expected-error{{non-const lvalue reference to type 'int' cannot bind to a value of unrelated type 'const bool'}}
/external/clang/bindings/python/clang/
H A Dcindex.py1781 def is_pod(self): member in class:Type
/external/clang/bindings/python/tests/cindex/
H A Dtest_comment.py22 assert test1.type.is_pod()
H A Dtest_type.py222 """Ensure Type.is_pod() works."""
230 assert i.type.is_pod()
231 assert not f.type.is_pod()
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dtype_traits.h43 // is_pod
78 template <class T> struct is_pod;
199 // We can't get is_pod right without compiler help, so fail conservatively.
203 template <class T> struct is_pod struct in namespace:google::protobuf::internal
211 template <class T> struct is_pod<const T> : is_pod<T> { }; struct in namespace:google::protobuf::internal
212 template <class T> struct is_pod<volatile T> : is_pod<T> { }; struct in namespace:google::protobuf::internal
213 template <class T> struct is_pod<const volatile T> : is_pod< struct in namespace:google::protobuf::internal
[all...]
H A Dtype_traits_unittest.cc327 EXPECT_TRUE(is_pod<bool>::value);
328 EXPECT_TRUE(is_pod<char>::value);
329 EXPECT_TRUE(is_pod<unsigned char>::value);
330 EXPECT_TRUE(is_pod<signed char>::value);
331 EXPECT_TRUE(is_pod<wchar_t>::value);
332 EXPECT_TRUE(is_pod<int>::value);
333 EXPECT_TRUE(is_pod<unsigned int>::value);
334 EXPECT_TRUE(is_pod<short>::value);
335 EXPECT_TRUE(is_pod<unsigned short>::value);
336 EXPECT_TRUE(is_pod<lon
[all...]
/external/chromium_org/third_party/cld/base/
H A Dmacros.h187 // One of the type traits, is_pod, makes it possible to query whether
208 template<> struct is_pod<TypeName> : true_type { }; \
224 template <typename T> struct is_pod<TemplateName<T> > : is_pod<T> { }; \
241 typename base::is_pod<TypeName>::type>) }
H A Dtype_traits.h15 // is_pod
77 // We can't get is_pod right without compiler help, so fail conservatively.
80 template <class T> struct is_pod struct in namespace:base
84 template <class T> struct is_pod<const T> : is_pod<T> { }; struct in namespace:base
89 // for which is_pod is true. (2) std::pair of types with trivial
92 template <class T> struct has_trivial_constructor : is_pod<T> { };
104 // for which is_pod is true. (2) std::pair of types with trivial copy
107 template <class T> struct has_trivial_copy : is_pod<T> { };
118 // for which is_pod i
[all...]

Completed in 918 milliseconds