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

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
has_trivial_copy.hpp 43 BOOST_TT_AUX_BOOL_TRAIT_DEF1(has_trivial_copy,T,::boost::detail::has_trivial_copy_impl<T>::value)
46 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_trivial_copy,void,false)
48 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_trivial_copy,void const,false)
49 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_trivial_copy,void const volatile,false)
50 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_trivial_copy,void volatile,false)
has_nothrow_copy.hpp 12 #include <boost/type_traits/has_trivial_copy.hpp>
26 BOOST_STATIC_CONSTANT(bool, value = ::boost::has_trivial_copy<T>::value);
intrinsics.hpp 93 # define BOOST_HAS_NOTHROW_COPY(T) (__has_nothrow_copy(T) || ::boost::has_trivial_copy<T>::value)
144 # if __has_feature(has_trivial_copy)
  /external/clang/test/Lexer/
has_feature_type_traits.cpp 23 #if __has_feature(has_trivial_copy)
24 int has_trivial_copy();
26 // CHECK: int has_trivial_copy();
  /frameworks/rs/cpp/util/
TypeHelpers.h 50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value, enumerator in enum:android::RSC::traits::__anon28880
64 has_trivial_copy = enumerator in enum:android::RSC::aggregate_traits::__anon28881
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
152 if (!traits<TYPE>::has_trivial_copy) {
164 if (!traits<TYPE>::has_trivial_copy) {
178 if ((traits<TYPE>::has_trivial_dtor && traits<TYPE>::has_trivial_copy)
187 if (!traits<TYPE>::has_trivial_copy) {
201 if ((traits<TYPE>::has_trivial_dtor && traits<TYPE>::has_trivial_copy)
207 if (!traits<TYPE>::has_trivial_copy) {
    [all...]
  /frameworks/rs/server/
TypeHelpers.h 50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value, enumerator in enum:android::traits::__anon28967
64 has_trivial_copy = enumerator in enum:android::aggregate_traits::__anon28968
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
152 if (!traits<TYPE>::has_trivial_copy) {
164 if (!traits<TYPE>::has_trivial_copy) {
178 if ((traits<TYPE>::has_trivial_dtor && traits<TYPE>::has_trivial_copy)
187 if (!traits<TYPE>::has_trivial_copy) {
201 if ((traits<TYPE>::has_trivial_dtor && traits<TYPE>::has_trivial_copy)
207 if (!traits<TYPE>::has_trivial_copy) {
    [all...]
  /system/core/include/utils/
TypeHelpers.h 50 has_trivial_copy = is_pointer || trait_trivial_copy<TYPE>::value, enumerator in enum:android::traits::__anon74305
64 has_trivial_copy = enumerator in enum:android::aggregate_traits::__anon74306
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
154 if (!traits<TYPE>::has_trivial_copy) {
167 if (!traits<TYPE>::has_trivial_copy) {
183 if ((traits<TYPE>::has_trivial_dtor && traits<TYPE>::has_trivial_copy)
193 if (!traits<TYPE>::has_trivial_copy) {
207 if ((traits<TYPE>::has_trivial_dtor && traits<TYPE>::has_trivial_copy)
214 if (!traits<TYPE>::has_trivial_copy) {
    [all...]
SortedVector.h 149 |(traits<TYPE>::has_trivial_copy ? HAS_TRIVIAL_COPY : 0))
Vector.h 223 |(traits<TYPE>::has_trivial_copy ? HAS_TRIVIAL_COPY : 0))
  /external/protobuf/src/google/protobuf/stubs/
type_traits_unittest.cc 73 // by specializing has_trivial_copy.
84 template<> struct has_trivial_copy<C> : true_type { }; struct in namespace:google::protobuf::internal
412 EXPECT_TRUE(has_trivial_copy<bool>::value);
413 EXPECT_TRUE(has_trivial_copy<char>::value);
414 EXPECT_TRUE(has_trivial_copy<unsigned char>::value);
415 EXPECT_TRUE(has_trivial_copy<signed char>::value);
416 EXPECT_TRUE(has_trivial_copy<wchar_t>::value);
417 EXPECT_TRUE(has_trivial_copy<int>::value);
418 EXPECT_TRUE(has_trivial_copy<unsigned int>::value);
419 EXPECT_TRUE(has_trivial_copy<short>::value)
    [all...]
type_traits.h 45 // has_trivial_copy
80 template <class T> struct has_trivial_copy;
231 // We can't get has_trivial_copy right without compiler help, so fail
236 template <class T> struct has_trivial_copy : is_pod<T> { }; struct in namespace:google::protobuf::internal
237 template <class T, class U> struct has_trivial_copy<std::pair<T, U> > struct in namespace:google::protobuf::internal
239 (has_trivial_copy<T>::value &&
240 has_trivial_copy<U>::value)> { };
241 template <class A, int N> struct has_trivial_copy<A[N]> struct in namespace:google::protobuf::internal
242 : has_trivial_copy<A> { };
243 template <class T> struct has_trivial_copy<const T> : has_trivial_copy<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
type_traits.h 45 // has_trivial_copy
80 template <class T> struct has_trivial_copy;
231 // We can't get has_trivial_copy right without compiler help, so fail
236 template <class T> struct has_trivial_copy : is_pod<T> { }; struct in namespace:google::protobuf::internal
237 template <class T, class U> struct has_trivial_copy<std::pair<T, U> > struct in namespace:google::protobuf::internal
239 (has_trivial_copy<T>::value &&
240 has_trivial_copy<U>::value)> { };
241 template <class A, int N> struct has_trivial_copy<A[N]> struct in namespace:google::protobuf::internal
242 : has_trivial_copy<A> { };
243 template <class T> struct has_trivial_copy<const T> : has_trivial_copy<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
type_traits.h 45 // has_trivial_copy
80 template <class T> struct has_trivial_copy;
231 // We can't get has_trivial_copy right without compiler help, so fail
236 template <class T> struct has_trivial_copy : is_pod<T> { }; struct in namespace:google::protobuf::internal
237 template <class T, class U> struct has_trivial_copy<std::pair<T, U> > struct in namespace:google::protobuf::internal
239 (has_trivial_copy<T>::value &&
240 has_trivial_copy<U>::value)> { };
241 template <class A, int N> struct has_trivial_copy<A[N]> struct in namespace:google::protobuf::internal
242 : has_trivial_copy<A> { };
243 template <class T> struct has_trivial_copy<const T> : has_trivial_copy<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
type_traits.h 45 // has_trivial_copy
80 template <class T> struct has_trivial_copy;
231 // We can't get has_trivial_copy right without compiler help, so fail
236 template <class T> struct has_trivial_copy : is_pod<T> { }; struct in namespace:google::protobuf::internal
237 template <class T, class U> struct has_trivial_copy<std::pair<T, U> > struct in namespace:google::protobuf::internal
239 (has_trivial_copy<T>::value &&
240 has_trivial_copy<U>::value)> { };
241 template <class A, int N> struct has_trivial_copy<A[N]> struct in namespace:google::protobuf::internal
242 : has_trivial_copy<A> { };
243 template <class T> struct has_trivial_copy<const T> : has_trivial_copy<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 45 // has_trivial_copy
80 template <class T> struct has_trivial_copy;
231 // We can't get has_trivial_copy right without compiler help, so fail
236 template <class T> struct has_trivial_copy : is_pod<T> { }; struct in namespace:google::protobuf::internal
237 template <class T, class U> struct has_trivial_copy<std::pair<T, U> > struct in namespace:google::protobuf::internal
239 (has_trivial_copy<T>::value &&
240 has_trivial_copy<U>::value)> { };
241 template <class A, int N> struct has_trivial_copy<A[N]> struct in namespace:google::protobuf::internal
242 : has_trivial_copy<A> { };
243 template <class T> struct has_trivial_copy<const T> : has_trivial_copy<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 46 // has_trivial_copy
100 template <class T> struct has_trivial_copy;
258 // We can't get has_trivial_copy right without compiler help, so fail
263 template <class T> struct has_trivial_copy : is_pod<T> { }; struct in namespace:google::protobuf::internal
264 template <class T, class U> struct has_trivial_copy<std::pair<T, U> > struct in namespace:google::protobuf::internal
266 (has_trivial_copy<T>::value &&
267 has_trivial_copy<U>::value)> { };
268 template <class A, int N> struct has_trivial_copy<A[N]> struct in namespace:google::protobuf::internal
269 : has_trivial_copy<A> { };
270 template <class T> struct has_trivial_copy<const T> : has_trivial_copy<T> { } struct in namespace:google::protobuf::internal
    [all...]
  /frameworks/base/libs/hwui/utils/
Pair.h 53 { enum { value = aggregate_traits<F, S>::has_trivial_copy }; };
  /ndk/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 30 #include <boost/type_traits/has_trivial_copy.hpp>
73 enum { trivial_copy = ::boost::has_trivial_copy<_Tp>::value };
111 enum { boost_trivial_copy = ::boost::has_trivial_copy<uncv1>::value };
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h 30 #include <boost/type_traits/has_trivial_copy.hpp>
73 enum { trivial_copy = ::boost::has_trivial_copy<_Tp>::value };
111 enum { boost_trivial_copy = ::boost::has_trivial_copy<uncv1>::value };
  /external/protobuf/src/google/protobuf/
repeated_field.h 226 bool HasTrivialCopy = has_trivial_copy<Element>::value>
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 199 bool HasTrivialCopy = has_trivial_copy<Element>::value>
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 199 bool HasTrivialCopy = has_trivial_copy<Element>::value>
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
repeated_field.h 199 bool HasTrivialCopy = has_trivial_copy<Element>::value>
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
repeated_field.h 199 bool HasTrivialCopy = has_trivial_copy<Element>::value>
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field.h 309 bool HasTrivialCopy = has_trivial_copy<Element>::value>
    [all...]

Completed in 482 milliseconds