Searched defs:is_integral (Results 1 - 2 of 2) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
H A Dtype_traits.h38 // 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_ 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/clang/test/SemaCXX/
H A Dtype-traits.cpp374 void is_integral() function

Completed in 122 milliseconds