HomeSort by relevance Sort by last modified time
    Searched full:is_integral (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /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/chromium_org/third_party/cld/base/
type_traits.h 11 // is_integral
36 // is_integral is false except for the built-in integer types.
37 template <class T> struct is_integral : false_type { }; struct in namespace:base
38 template<> struct is_integral<bool> : true_type { }; struct in namespace:base
39 template<> struct is_integral<char> : true_type { }; struct in namespace:base
40 template<> struct is_integral<unsigned char> : true_type { }; struct in namespace:base
41 template<> struct is_integral<signed char> : true_type { }; struct in namespace:base
46 template<> struct is_integral<__wchar_t> : true_type { }; struct in namespace:base
48 template<> struct is_integral<wchar_t> : true_type { }; struct in namespace:base
50 template<> struct is_integral<short> : true_type { } struct in namespace:base
51 template<> struct is_integral<unsigned short> : true_type { }; struct in namespace:base
52 template<> struct is_integral<int> : true_type { }; struct in namespace:base
53 template<> struct is_integral<unsigned int> : true_type { }; struct in namespace:base
54 template<> struct is_integral<long> : true_type { }; struct in namespace:base
55 template<> struct is_integral<unsigned long> : true_type { }; struct in namespace:base
56 template<> struct is_integral<long long> : true_type { }; struct in namespace:base
57 template<> struct is_integral<unsigned long long> : true_type { }; struct in namespace:base
    [all...]
  /external/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");
  /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/chromium_org/third_party/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...]
  /external/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::__anon35878
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon35889
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
  /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::__anon43887
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon43898
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
  /prebuilts/ndk/5/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::__anon54754
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon54765
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
  /prebuilts/ndk/6/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::__anon55852
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon55863
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
  /prebuilts/ndk/7/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::__anon60524
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon60535
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
  /prebuilts/ndk/8/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::__anon64987
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon64998
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
  /prebuilts/ndk/9/sources/cxx-stl/EH/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::__anon83316
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon83327
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;
  /external/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");
  /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 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/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/9/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...]
  /external/stlport/stlport/
type_traits 214 struct is_integral :
218 __CV_SPEC(is_integral,bool,true);
219 __CV_SPEC(is_integral,char,true);
220 __CV_SPEC(is_integral,signed char,true);
221 __CV_SPEC(is_integral,unsigned char,true);
222 __CV_SPEC(is_integral,wchar_t,true);
223 __CV_SPEC(is_integral,short,true);
224 __CV_SPEC(is_integral,unsigned short,true);
225 __CV_SPEC(is_integral,int,true);
226 __CV_SPEC(is_integral,unsigned int,true)
    [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/5/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/6/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...]

Completed in 2285 milliseconds

1 2 3 4 5 6 7 8