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

1 2 3 4 5

  /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.ios.members/
streamoff.pass.cpp 23 static_assert((std::is_integral<std::ios_base::streamoff>::value), "");
  /external/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, "");
  /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/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");
  /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...]
  /external/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)
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)
  /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)
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)
  /external/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, "");

Completed in 245 milliseconds

1 2 3 4 5