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

1 2 3

  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.ios.members/
streamoff.pass.cpp 23 static_assert((std::is_integral<std::ios_base::streamoff>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/stream.types/
streamoff.pass.cpp 19 static_assert(std::is_integral<std::streamoff>::value, "");
streamsize.pass.cpp 19 static_assert(std::is_integral<std::streamsize>::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");
  /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 60 using google::protobuf::internal::is_integral;
191 // Verify that is_integral is true for all integer types.
192 EXPECT_TRUE(is_integral<bool>::value);
193 EXPECT_TRUE(is_integral<char>::value);
194 EXPECT_TRUE(is_integral<unsigned char>::value);
195 EXPECT_TRUE(is_integral<signed char>::value);
196 EXPECT_TRUE(is_integral<wchar_t>::value);
197 EXPECT_TRUE(is_integral<int>::value);
198 EXPECT_TRUE(is_integral<unsigned int>::value);
199 EXPECT_TRUE(is_integral<short>::value)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/cmplx.over/
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)
imag.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)
norm.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)
real.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)
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)
conj.pass.cpp 26 test(T x, typename std::enable_if<std::is_integral<T>::value>::type* = 0)
42 test(T x, typename std::enable_if<!std::is_integral<T>::value &&
proj.pass.cpp 26 test(T x, typename std::enable_if<std::is_integral<T>::value>::type* = 0)
42 test(T x, typename std::enable_if<!std::is_integral<T>::value &&
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/
hours.pass.cpp 24 static_assert(std::is_integral<Rep>::value, "");
microseconds.pass.cpp 24 static_assert(std::is_integral<Rep>::value, "");
milliseconds.pass.cpp 24 static_assert(std::is_integral<Rep>::value, "");
minutes.pass.cpp 24 static_assert(std::is_integral<Rep>::value, "");
nanoseconds.pass.cpp 24 static_assert(std::is_integral<Rep>::value, "");
seconds.pass.cpp 24 static_assert(std::is_integral<Rep>::value, "");
  /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::__anon28454
60 typedef typename __bool2type<is_integral>::_Ret _Ret;
122 enum { is_integral = ::boost::is_integral<_Tp>::value }; enumerator in enum:_DefaultZeroValue::__anon28465
123 typedef typename __bool2type<is_integral>::_Ret _IsIntegral;

Completed in 575 milliseconds

1 2 3