/external/clang/test/Lexer/ |
has_feature_type_traits.cpp | 28 #if __has_feature(has_trivial_constructor) 29 int has_trivial_constructor(); 31 // CHECK: int has_trivial_constructor();
|
/external/protobuf/src/google/protobuf/stubs/ |
type_traits_unittest.cc | 112 // by specializing has_trivial_constructor. 121 template<> struct has_trivial_constructor<E> : true_type { }; struct in namespace:google::protobuf::internal 372 EXPECT_TRUE(has_trivial_constructor<bool>::value); 373 EXPECT_TRUE(has_trivial_constructor<char>::value); 374 EXPECT_TRUE(has_trivial_constructor<unsigned char>::value); 375 EXPECT_TRUE(has_trivial_constructor<signed char>::value); 376 EXPECT_TRUE(has_trivial_constructor<wchar_t>::value); 377 EXPECT_TRUE(has_trivial_constructor<int>::value); 378 EXPECT_TRUE(has_trivial_constructor<unsigned int>::value); 379 EXPECT_TRUE(has_trivial_constructor<short>::value) [all...] |
type_traits.h | 45 // has_trivial_constructor 99 template <class T> struct has_trivial_constructor; 243 // We can't get has_trivial_constructor right without compiler help, so 248 template <class T> struct has_trivial_constructor : is_pod<T> { }; struct in namespace:google::protobuf::internal 249 template <class T, class U> struct has_trivial_constructor<std::pair<T, U> > struct in namespace:google::protobuf::internal 251 (has_trivial_constructor<T>::value && 252 has_trivial_constructor<U>::value)> { }; 253 template <class A, int N> struct has_trivial_constructor<A[N]> struct in namespace:google::protobuf::internal 254 : has_trivial_constructor<A> { }; 255 template <class T> struct has_trivial_constructor<const T struct in namespace:google::protobuf::internal [all...] |
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/ |
type_traits.h | 44 // has_trivial_constructor 79 template <class T> struct has_trivial_constructor; 216 // We can't get has_trivial_constructor right without compiler help, so 221 template <class T> struct has_trivial_constructor : is_pod<T> { }; struct in namespace:google::protobuf::internal 222 template <class T, class U> struct has_trivial_constructor<std::pair<T, U> > struct in namespace:google::protobuf::internal 224 (has_trivial_constructor<T>::value && 225 has_trivial_constructor<U>::value)> { }; 226 template <class A, int N> struct has_trivial_constructor<A[N]> struct in namespace:google::protobuf::internal 227 : has_trivial_constructor<A> { }; 228 template <class T> struct has_trivial_constructor<const T struct in namespace:google::protobuf::internal [all...] |
/prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/ |
type_traits.h | 44 // has_trivial_constructor 79 template <class T> struct has_trivial_constructor; 216 // We can't get has_trivial_constructor right without compiler help, so 221 template <class T> struct has_trivial_constructor : is_pod<T> { }; struct in namespace:google::protobuf::internal 222 template <class T, class U> struct has_trivial_constructor<std::pair<T, U> > struct in namespace:google::protobuf::internal 224 (has_trivial_constructor<T>::value && 225 has_trivial_constructor<U>::value)> { }; 226 template <class A, int N> struct has_trivial_constructor<A[N]> struct in namespace:google::protobuf::internal 227 : has_trivial_constructor<A> { }; 228 template <class T> struct has_trivial_constructor<const T struct in namespace:google::protobuf::internal [all...] |
/prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/ |
type_traits.h | 44 // has_trivial_constructor 79 template <class T> struct has_trivial_constructor; 216 // We can't get has_trivial_constructor right without compiler help, so 221 template <class T> struct has_trivial_constructor : is_pod<T> { }; struct in namespace:google::protobuf::internal 222 template <class T, class U> struct has_trivial_constructor<std::pair<T, U> > struct in namespace:google::protobuf::internal 224 (has_trivial_constructor<T>::value && 225 has_trivial_constructor<U>::value)> { }; 226 template <class A, int N> struct has_trivial_constructor<A[N]> struct in namespace:google::protobuf::internal 227 : has_trivial_constructor<A> { }; 228 template <class T> struct has_trivial_constructor<const T struct in namespace:google::protobuf::internal [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/ |
type_traits.h | 45 // has_trivial_constructor 99 template <class T> struct has_trivial_constructor; 243 // We can't get has_trivial_constructor right without compiler help, so 248 template <class T> struct has_trivial_constructor : is_pod<T> { }; struct in namespace:google::protobuf::internal 249 template <class T, class U> struct has_trivial_constructor<std::pair<T, U> > struct in namespace:google::protobuf::internal 251 (has_trivial_constructor<T>::value && 252 has_trivial_constructor<U>::value)> { }; 253 template <class A, int N> struct has_trivial_constructor<A[N]> struct in namespace:google::protobuf::internal 254 : has_trivial_constructor<A> { }; 255 template <class T> struct has_trivial_constructor<const T struct in namespace:google::protobuf::internal [all...] |
/prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/ |
type_traits.h | 44 // has_trivial_constructor 79 template <class T> struct has_trivial_constructor; 216 // We can't get has_trivial_constructor right without compiler help, so 221 template <class T> struct has_trivial_constructor : is_pod<T> { }; struct in namespace:google::protobuf::internal 222 template <class T, class U> struct has_trivial_constructor<std::pair<T, U> > struct in namespace:google::protobuf::internal 224 (has_trivial_constructor<T>::value && 225 has_trivial_constructor<U>::value)> { }; 226 template <class A, int N> struct has_trivial_constructor<A[N]> struct in namespace:google::protobuf::internal 227 : has_trivial_constructor<A> { }; 228 template <class T> struct has_trivial_constructor<const T struct in namespace:google::protobuf::internal [all...] |
/prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/ |
boost_type_traits.h | 29 #include <boost/type_traits/has_trivial_constructor.hpp> 70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value }; 136 enum { boost_trivial_constructor = ::boost::has_trivial_constructor<uncv>::value };
|
/prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/ |
boost_type_traits.h | 29 #include <boost/type_traits/has_trivial_constructor.hpp> 70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value }; 136 enum { boost_trivial_constructor = ::boost::has_trivial_constructor<uncv>::value };
|
/prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/ |
boost_type_traits.h | 29 #include <boost/type_traits/has_trivial_constructor.hpp> 70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value }; 136 enum { boost_trivial_constructor = ::boost::has_trivial_constructor<uncv>::value };
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/ |
type_traits | 508 struct has_trivial_constructor
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/ |
type_traits | 508 struct has_trivial_constructor
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/ |
type_traits | 508 struct has_trivial_constructor
|
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/ |
type_traits | 508 struct has_trivial_constructor
|
/prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/ |
type_traits | 513 struct has_trivial_constructor :
|
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/ |
type_traits | 508 struct has_trivial_constructor
|
/prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/ |
type_traits | 513 struct has_trivial_constructor :
|
/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/ |
type_traits | 508 struct has_trivial_constructor
|
/prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/ |
type_traits | 513 struct has_trivial_constructor :
|
/external/clang/lib/Lex/ |
PPMacroExpansion.cpp | [all...] |
/prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/ |
type_traits | [all...] |
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/ |
type_traits | [all...] |
/external/libcxx/include/ |
type_traits | [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/ |
type_traits | [all...] |