/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
is_integral.hpp | 23 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_integral,T,__is_integral(T)) 25 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_integral,T,false) 27 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,unsigned char,true) 28 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,unsigned short,true) 29 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,unsigned int,true) 30 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,unsigned long,true) 32 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,signed char,true) 33 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,signed short,true) 34 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,signed int,true) 35 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,signed long,true [all...] |
is_arithmetic.hpp | 13 #include <boost/type_traits/is_integral.hpp> 32 ::boost::is_integral<T>::value,
|
/external/libcxx/test/std/depr/depr.c.headers/ |
stddef_h.pass.cpp | 29 static_assert(std::is_integral<size_t>::value, 30 "std::is_integral<size_t>::value"); 35 static_assert(std::is_integral<ptrdiff_t>::value, 36 "std::is_integral<ptrdiff_t>::value");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
stddef_h.pass.cpp | 29 static_assert(std::is_integral<size_t>::value, 30 "std::is_integral<size_t>::value"); 35 static_assert(std::is_integral<ptrdiff_t>::value, 36 "std::is_integral<ptrdiff_t>::value");
|
/external/protobuf/src/google/protobuf/stubs/ |
type_traits.h | 38 // is_integral 69 template <class T> struct is_integral; 94 // is_integral is false except for the built-in integer types. A 96 template <class T> struct is_integral : false_type { }; struct in namespace:google::protobuf::internal 97 template<> struct is_integral<bool> : true_type { }; struct in namespace:google::protobuf::internal 98 template<> struct is_integral<char> : true_type { }; struct in namespace:google::protobuf::internal 99 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:google::protobuf::internal 100 template<> struct is_integral<signed char> : true_type { }; struct in namespace:google::protobuf::internal 105 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:google::protobuf::internal 107 template<> struct is_integral<wchar_t> : true_type { } struct in namespace:google::protobuf::internal 109 template<> struct is_integral<short> : true_type { }; struct in namespace:google::protobuf::internal 110 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:google::protobuf::internal 111 template<> struct is_integral<int> : true_type { }; struct in namespace:google::protobuf::internal 112 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:google::protobuf::internal 113 template<> struct is_integral<long> : true_type { }; struct in namespace:google::protobuf::internal 114 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:google::protobuf::internal 116 template<> struct is_integral<long long> : true_type { }; struct in namespace:google::protobuf::internal 117 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:google::protobuf::internal 119 template <class T> struct is_integral<const T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 120 template <class T> struct is_integral<volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 121 template <class T> struct is_integral<const volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal [all...] |
type_traits_unittest.cc | 171 // Verify that is_integral is true for all integer types. 172 EXPECT_TRUE(is_integral<bool>::value); 173 EXPECT_TRUE(is_integral<char>::value); 174 EXPECT_TRUE(is_integral<unsigned char>::value); 175 EXPECT_TRUE(is_integral<signed char>::value); 176 EXPECT_TRUE(is_integral<wchar_t>::value); 177 EXPECT_TRUE(is_integral<int>::value); 178 EXPECT_TRUE(is_integral<unsigned int>::value); 179 EXPECT_TRUE(is_integral<short>::value); 180 EXPECT_TRUE(is_integral<unsigned short>::value) [all...] |
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/ |
type_traits.h | 38 // is_integral 69 template <class T> struct is_integral; 94 // is_integral is false except for the built-in integer types. A 96 template <class T> struct is_integral : false_type { }; struct in namespace:google::protobuf::internal 97 template<> struct is_integral<bool> : true_type { }; struct in namespace:google::protobuf::internal 98 template<> struct is_integral<char> : true_type { }; struct in namespace:google::protobuf::internal 99 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:google::protobuf::internal 100 template<> struct is_integral<signed char> : true_type { }; struct in namespace:google::protobuf::internal 105 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:google::protobuf::internal 107 template<> struct is_integral<wchar_t> : true_type { } struct in namespace:google::protobuf::internal 109 template<> struct is_integral<short> : true_type { }; struct in namespace:google::protobuf::internal 110 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:google::protobuf::internal 111 template<> struct is_integral<int> : true_type { }; struct in namespace:google::protobuf::internal 112 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:google::protobuf::internal 113 template<> struct is_integral<long> : true_type { }; struct in namespace:google::protobuf::internal 114 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:google::protobuf::internal 116 template<> struct is_integral<long long> : true_type { }; struct in namespace:google::protobuf::internal 117 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:google::protobuf::internal 119 template <class T> struct is_integral<const T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 120 template <class T> struct is_integral<volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 121 template <class T> struct is_integral<const volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal [all...] |
/prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/ |
type_traits.h | 38 // is_integral 69 template <class T> struct is_integral; 94 // is_integral is false except for the built-in integer types. A 96 template <class T> struct is_integral : false_type { }; struct in namespace:google::protobuf::internal 97 template<> struct is_integral<bool> : true_type { }; struct in namespace:google::protobuf::internal 98 template<> struct is_integral<char> : true_type { }; struct in namespace:google::protobuf::internal 99 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:google::protobuf::internal 100 template<> struct is_integral<signed char> : true_type { }; struct in namespace:google::protobuf::internal 105 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:google::protobuf::internal 107 template<> struct is_integral<wchar_t> : true_type { } struct in namespace:google::protobuf::internal 109 template<> struct is_integral<short> : true_type { }; struct in namespace:google::protobuf::internal 110 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:google::protobuf::internal 111 template<> struct is_integral<int> : true_type { }; struct in namespace:google::protobuf::internal 112 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:google::protobuf::internal 113 template<> struct is_integral<long> : true_type { }; struct in namespace:google::protobuf::internal 114 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:google::protobuf::internal 116 template<> struct is_integral<long long> : true_type { }; struct in namespace:google::protobuf::internal 117 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:google::protobuf::internal 119 template <class T> struct is_integral<const T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 120 template <class T> struct is_integral<volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 121 template <class T> struct is_integral<const volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal [all...] |
/prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/ |
type_traits.h | 38 // is_integral 69 template <class T> struct is_integral; 94 // is_integral is false except for the built-in integer types. A 96 template <class T> struct is_integral : false_type { }; struct in namespace:google::protobuf::internal 97 template<> struct is_integral<bool> : true_type { }; struct in namespace:google::protobuf::internal 98 template<> struct is_integral<char> : true_type { }; struct in namespace:google::protobuf::internal 99 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:google::protobuf::internal 100 template<> struct is_integral<signed char> : true_type { }; struct in namespace:google::protobuf::internal 105 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:google::protobuf::internal 107 template<> struct is_integral<wchar_t> : true_type { } struct in namespace:google::protobuf::internal 109 template<> struct is_integral<short> : true_type { }; struct in namespace:google::protobuf::internal 110 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:google::protobuf::internal 111 template<> struct is_integral<int> : true_type { }; struct in namespace:google::protobuf::internal 112 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:google::protobuf::internal 113 template<> struct is_integral<long> : true_type { }; struct in namespace:google::protobuf::internal 114 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:google::protobuf::internal 116 template<> struct is_integral<long long> : true_type { }; struct in namespace:google::protobuf::internal 117 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:google::protobuf::internal 119 template <class T> struct is_integral<const T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 120 template <class T> struct is_integral<volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 121 template <class T> struct is_integral<const volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/ |
type_traits.h | 39 // is_integral 89 template <class T> struct is_integral; 121 // is_integral is false except for the built-in integer types. A 123 template <class T> struct is_integral : false_type { }; struct in namespace:google::protobuf::internal 124 template<> struct is_integral<bool> : true_type { }; struct in namespace:google::protobuf::internal 125 template<> struct is_integral<char> : true_type { }; struct in namespace:google::protobuf::internal 126 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:google::protobuf::internal 127 template<> struct is_integral<signed char> : true_type { }; struct in namespace:google::protobuf::internal 132 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:google::protobuf::internal 134 template<> struct is_integral<wchar_t> : true_type { } struct in namespace:google::protobuf::internal 136 template<> struct is_integral<short> : true_type { }; struct in namespace:google::protobuf::internal 137 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:google::protobuf::internal 138 template<> struct is_integral<int> : true_type { }; struct in namespace:google::protobuf::internal 139 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:google::protobuf::internal 140 template<> struct is_integral<long> : true_type { }; struct in namespace:google::protobuf::internal 141 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:google::protobuf::internal 143 template<> struct is_integral<long long> : true_type { }; struct in namespace:google::protobuf::internal 144 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:google::protobuf::internal 146 template <class T> struct is_integral<const T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 147 template <class T> struct is_integral<volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 148 template <class T> struct is_integral<const volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal [all...] |
/prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/ |
type_traits.h | 38 // is_integral 69 template <class T> struct is_integral; 94 // is_integral is false except for the built-in integer types. A 96 template <class T> struct is_integral : false_type { }; struct in namespace:google::protobuf::internal 97 template<> struct is_integral<bool> : true_type { }; struct in namespace:google::protobuf::internal 98 template<> struct is_integral<char> : true_type { }; struct in namespace:google::protobuf::internal 99 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:google::protobuf::internal 100 template<> struct is_integral<signed char> : true_type { }; struct in namespace:google::protobuf::internal 105 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:google::protobuf::internal 107 template<> struct is_integral<wchar_t> : true_type { } struct in namespace:google::protobuf::internal 109 template<> struct is_integral<short> : true_type { }; struct in namespace:google::protobuf::internal 110 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:google::protobuf::internal 111 template<> struct is_integral<int> : true_type { }; struct in namespace:google::protobuf::internal 112 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:google::protobuf::internal 113 template<> struct is_integral<long> : true_type { }; struct in namespace:google::protobuf::internal 114 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:google::protobuf::internal 116 template<> struct is_integral<long long> : true_type { }; struct in namespace:google::protobuf::internal 117 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:google::protobuf::internal 119 template <class T> struct is_integral<const T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 120 template <class T> struct is_integral<volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal 121 template <class T> struct is_integral<const volatile T> : is_integral<T> { }; struct in namespace:google::protobuf::internal [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
boost_type_traits.h | 27 #include <boost/type_traits/is_integral.hpp> 59 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_IsIntegral::__anon36155 60 typedef typename __bool2type<is_integral>::_Ret _Ret; 122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon36166 123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
|
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
boost_type_traits.h | 27 #include <boost/type_traits/is_integral.hpp> 59 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_IsIntegral::__anon72780 60 typedef typename __bool2type<is_integral>::_Ret _Ret; 122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon72791 123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
|
/external/libcxx/test/std/language.support/support.types/ |
ptrdiff_t.pass.cpp | 25 static_assert(std::is_integral<std::ptrdiff_t>::value, 26 "std::is_integral<std::ptrdiff_t>::value");
|
size_t.pass.cpp | 25 static_assert(std::is_integral<std::size_t>::value, 26 "std::is_integral<std::size_t>::value");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.types/ |
ptrdiff_t.pass.cpp | 25 static_assert(std::is_integral<std::ptrdiff_t>::value, 26 "std::is_integral<std::ptrdiff_t>::value");
|
size_t.pass.cpp | 25 static_assert(std::is_integral<std::size_t>::value, 26 "std::is_integral<std::size_t>::value");
|
/external/libcxx/include/ |
cmath | 689 typename enable_if<is_integral<_A1>::value, double>::type 704 typename enable_if<is_integral<_A1>::value, double>::type 719 typename enable_if<is_integral<_A1>::value, double>::type 760 typename enable_if<is_integral<_A1>::value, double>::type 775 typename enable_if<is_integral<_A1>::value, double>::type 790 typename enable_if<is_integral<_A1>::value, double>::type 809 typename enable_if<is_integral<_A1>::value, double>::type 824 typename enable_if<is_integral<_A1>::value, double>::type 839 typename enable_if<is_integral<_A1>::value, double>::type 883 typename enable_if<is_integral<_A1>::value, double>::typ [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cmath | 685 typename enable_if<is_integral<_A1>::value, double>::type 700 typename enable_if<is_integral<_A1>::value, double>::type 715 typename enable_if<is_integral<_A1>::value, double>::type 756 typename enable_if<is_integral<_A1>::value, double>::type 771 typename enable_if<is_integral<_A1>::value, double>::type 786 typename enable_if<is_integral<_A1>::value, double>::type 805 typename enable_if<is_integral<_A1>::value, double>::type 820 typename enable_if<is_integral<_A1>::value, double>::type 835 typename enable_if<is_integral<_A1>::value, double>::type 879 typename enable_if<is_integral<_A1>::value, double>::typ [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cmath | 685 typename enable_if<is_integral<_A1>::value, double>::type 700 typename enable_if<is_integral<_A1>::value, double>::type 715 typename enable_if<is_integral<_A1>::value, double>::type 756 typename enable_if<is_integral<_A1>::value, double>::type 771 typename enable_if<is_integral<_A1>::value, double>::type 786 typename enable_if<is_integral<_A1>::value, double>::type 805 typename enable_if<is_integral<_A1>::value, double>::type 820 typename enable_if<is_integral<_A1>::value, double>::type 835 typename enable_if<is_integral<_A1>::value, double>::type 879 typename enable_if<is_integral<_A1>::value, double>::typ [all...] |
/ndk/sources/cxx-stl/stlport/stlport/ |
type_traits | 212 struct is_integral : 216 __CV_SPEC(is_integral,bool,true); 217 __CV_SPEC(is_integral,char,true); 218 __CV_SPEC(is_integral,signed char,true); 219 __CV_SPEC(is_integral,unsigned char,true); 220 __CV_SPEC(is_integral,wchar_t,true); 221 __CV_SPEC(is_integral,short,true); 222 __CV_SPEC(is_integral,unsigned short,true); 223 __CV_SPEC(is_integral,int,true); 224 __CV_SPEC(is_integral,unsigned int,true) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/ |
type_traits | 212 struct is_integral : 216 __CV_SPEC(is_integral,bool,true); 217 __CV_SPEC(is_integral,char,true); 218 __CV_SPEC(is_integral,signed char,true); 219 __CV_SPEC(is_integral,unsigned char,true); 220 __CV_SPEC(is_integral,wchar_t,true); 221 __CV_SPEC(is_integral,short,true); 222 __CV_SPEC(is_integral,unsigned short,true); 223 __CV_SPEC(is_integral,int,true); 224 __CV_SPEC(is_integral,unsigned int,true) [all...] |
/external/libcxx/test/std/numerics/complex.number/cmplx.over/ |
pow.pass.cpp | 32 promote(T, typename std::enable_if<std::is_integral<T>::value>::type* = 0); 67 test(typename std::enable_if<std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0) 75 test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0)
|
arg.pass.cpp | 24 test(T x, typename std::enable_if<std::is_integral<T>::value>::type* = 0) 32 test(T x, typename std::enable_if<!std::is_integral<T>::value>::type* = 0)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/cmplx.over/ |
pow.pass.cpp | 32 promote(T, typename std::enable_if<std::is_integral<T>::value>::type* = 0); 67 test(typename std::enable_if<std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0) 75 test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0)
|