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

/external/chromium_org/third_party/cld/base/
H A Dtype_traits.h12 // is_floating_point
60 // is_floating_point is false except for the built-in floating-point types.
61 template <class T> struct is_floating_point : false_type { }; struct in namespace:base
62 template<> struct is_floating_point<float> : true_type { }; struct in namespace:base
63 template<> struct is_floating_point<double> : true_type { }; struct in namespace:base
64 template<> struct is_floating_point<long double> : true_type { }; struct in namespace:base
82 is_floating_point<T>::value ||
/external/chromium_org/third_party/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.cpp399 void is_floating_point() function

Completed in 1053 milliseconds