Searched refs:has_trivial_destructor (Results 1 - 6 of 6) sorted by relevance

/external/clang/test/Lexer/
H A Dhas_feature_type_traits.cpp33 #if __has_feature(has_trivial_destructor)
34 int has_trivial_destructor();
36 // CHECK: int has_trivial_destructor();
/external/protobuf/src/google/protobuf/stubs/
H A Dtype_traits_unittest.cc125 // by specializing has_trivial_destructor.
136 template<> struct has_trivial_destructor<F> : true_type { }; struct in namespace:google::protobuf::internal
497 EXPECT_TRUE(has_trivial_destructor<bool>::value);
498 EXPECT_TRUE(has_trivial_destructor<char>::value);
499 EXPECT_TRUE(has_trivial_destructor<unsigned char>::value);
500 EXPECT_TRUE(has_trivial_destructor<signed char>::value);
501 EXPECT_TRUE(has_trivial_destructor<wchar_t>::value);
502 EXPECT_TRUE(has_trivial_destructor<int>::value);
503 EXPECT_TRUE(has_trivial_destructor<unsigned int>::value);
504 EXPECT_TRUE(has_trivial_destructor<shor
[all...]
H A Dtype_traits.h47 // has_trivial_destructor
82 template <class T> struct has_trivial_destructor;
257 // We can't get has_trivial_destructor right without compiler help, so
262 template <class T> struct has_trivial_destructor : is_pod<T> { }; struct in namespace:google::protobuf::internal
263 template <class T, class U> struct has_trivial_destructor<std::pair<T, U> > struct in namespace:google::protobuf::internal
265 (has_trivial_destructor<T>::value &&
266 has_trivial_destructor<U>::value)> { };
267 template <class A, int N> struct has_trivial_destructor<A[N]> struct in namespace:google::protobuf::internal
268 : has_trivial_destructor<A> { };
269 template <class T> struct has_trivial_destructor<cons struct in namespace:google::protobuf::internal
[all...]
/external/pcre/dist/
H A Dpcre_stringpiece.h171 typedef __true_type has_trivial_destructor; typedef in struct:__type_traits
/external/pcre/
H A Dpcre_stringpiece.h171 typedef __true_type has_trivial_destructor; typedef in struct:__type_traits
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp1403 void has_trivial_destructor() { function

Completed in 500 milliseconds