HomeSort by relevance Sort by last modified time
    Searched refs:is_pod (Results 1 - 14 of 14) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.unary/meta.unary.prop/
is_pod.pass.cpp 12 // 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/
has_feature_type_traits.cpp 78 #if __has_feature(is_pod)
79 int is_pod();
81 // CHECK: int is_pod();
  /external/clang/test/SemaCXX/
libstdcxx_is_pod_hack.cpp 39 #if !__has_feature(is_pod)
type-traits.cpp 115 void is_pod() function
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.types/
max_align_t.pass.cpp 20 static_assert(std::is_pod<std::max_align_t>::value,
21 "std::is_pod<std::max_align_t>::value");
  /external/clang/test/SemaTemplate/
instantiate-expr-4.cpp 202 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/stlport/stlport/stl/
boost_type_traits.h 33 #include <boost/type_traits/is_pod.hpp>
82 enum { pod = ::boost::is_pod<_Tp>::value };
  /ndk/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 33 #include <boost/type_traits/is_pod.hpp>
82 enum { pod = ::boost::is_pod<_Tp>::value };
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 33 #include <boost/type_traits/is_pod.hpp>
82 enum { pod = ::boost::is_pod<_Tp>::value };
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 33 #include <boost/type_traits/is_pod.hpp>
82 enum { pod = ::boost::is_pod<_Tp>::value };
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 33 #include <boost/type_traits/is_pod.hpp>
82 enum { pod = ::boost::is_pod<_Tp>::value };
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 33 #include <boost/type_traits/is_pod.hpp>
82 enum { pod = ::boost::is_pod<_Tp>::value };
  /external/clang/bindings/python/tests/cindex/
test_type.py 206 """Ensure Type.is_pod() works."""
214 assert i.type.is_pod()
215 assert not f.type.is_pod()
  /external/clang/bindings/python/clang/
cindex.py 1582 def is_pod(self): member in class:Type
    [all...]

Completed in 518 milliseconds