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

  /external/chromium_org/third_party/cld/base/
type_traits.h 15 // 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 is true. (2) std::pair of types with trivial cop
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits.h 43 // 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<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
type_with_alignment.hpp 18 #include <boost/type_traits/is_pod.hpp>
170 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 in namespace:boost
    [all...]
  /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/clang/bindings/python/clang/
cindex.py 1630 def is_pod(self): member in class:Type
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 141 void is_pod() function
    [all...]

Completed in 259 milliseconds