/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();
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
has_nothrow_constructor.hpp | 12 #include <boost/type_traits/has_trivial_constructor.hpp> 26 BOOST_STATIC_CONSTANT(bool, value = ::boost::has_trivial_constructor<T>::value);
|
has_trivial_constructor.hpp | 44 BOOST_TT_AUX_BOOL_TRAIT_DEF1(has_trivial_constructor,T,::boost::detail::has_trivial_ctor_impl<T>::value)
|
intrinsics.hpp | 92 # define BOOST_HAS_NOTHROW_CONSTRUCTOR(T) (__has_nothrow_constructor(T) || ::boost::has_trivial_constructor<T>::value) 141 # if __has_feature(has_trivial_constructor)
|
/external/protobuf/src/google/protobuf/stubs/ |
type_traits_unittest.cc | 109 // by specializing has_trivial_constructor. 118 template<> struct has_trivial_constructor<E> : true_type { }; struct in namespace:google::protobuf::internal 369 EXPECT_TRUE(has_trivial_constructor<bool>::value); 370 EXPECT_TRUE(has_trivial_constructor<char>::value); 371 EXPECT_TRUE(has_trivial_constructor<unsigned char>::value); 372 EXPECT_TRUE(has_trivial_constructor<signed char>::value); 373 EXPECT_TRUE(has_trivial_constructor<wchar_t>::value); 374 EXPECT_TRUE(has_trivial_constructor<int>::value); 375 EXPECT_TRUE(has_trivial_constructor<unsigned int>::value); 376 EXPECT_TRUE(has_trivial_constructor<short>::value) [all...] |
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/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...] |
/ndk/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/current/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 };
|
/ndk/sources/cxx-stl/stlport/stlport/ |
type_traits | 513 struct has_trivial_constructor :
|
/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/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/ |
type_traits | 508 struct has_trivial_constructor
|
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/ |
type_traits | 513 struct has_trivial_constructor :
|
/external/clang/lib/Lex/ |
PPMacroExpansion.cpp | [all...] |
/external/libcxx/include/ |
type_traits | [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
type_traits | [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
type_traits | [all...] |