Searched refs:is_floating_point (Results 1 – 4 of 4) sorted by relevance
109 template<typename> struct is_floating_point : public false_type { }; struct111 template<> struct is_floating_point<_Type>: public true_type { }; \112 template<> struct is_floating_point<_Type const>: public true_type { }; \113 template<> struct is_floating_point<_Type volatile>: public true_type { }; \114 template<> struct is_floating_point<_Type const volatile>: public true_type { };139 struct is_arithmetic : public integral_constant<bool, (is_integral<_T>::value || is_floating_point<…
92 using std::is_floating_point; in testIsFloatingPoint()93 EXPECT_TRUE(is_floating_point<float>::value == true); in testIsFloatingPoint()94 EXPECT_TRUE(is_floating_point<double>::value == true); in testIsFloatingPoint()95 EXPECT_TRUE(is_floating_point<long double>::value == true); in testIsFloatingPoint()
231 struct is_floating_point :235 __CV_SPEC(is_floating_point,float,true);236 __CV_SPEC(is_floating_point,double,true);237 __CV_SPEC(is_floating_point,long double,true);362 public integral_constant<bool, (is_integral<_Tp>::value || is_floating_point<_Tp>::value)>
280 void is_floating_point() in is_floating_point() function