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

/external/protobuf/src/google/protobuf/stubs/
H A Dtype_traits.h39 // is_floating_point
70 template <class T> struct is_floating_point;
123 // is_floating_point is false except for the built-in floating-point types.
125 template <class T> struct is_floating_point : false_type { }; struct in namespace:google::protobuf::internal
126 template<> struct is_floating_point<float> : true_type { }; struct in namespace:google::protobuf::internal
127 template<> struct is_floating_point<double> : true_type { }; struct in namespace:google::protobuf::internal
128 template<> struct is_floating_point<long double> : true_type { }; struct in namespace:google::protobuf::internal
129 template <class T> struct is_floating_point<const T> struct in namespace:google::protobuf::internal
130 : is_floating_point<T> { };
131 template <class T> struct is_floating_point<volatil struct in namespace:google::protobuf::internal
133 template <class T> struct is_floating_point<const volatile T> struct in namespace:google::protobuf::internal
[all...]
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp403 void is_floating_point() function

Completed in 222 milliseconds