Home
last modified time | relevance | path

Searched refs:is_floating_point (Results 1 – 4 of 4) sorted by relevance

/external/astl/include/
Dtype_traits.h109 template<typename> struct is_floating_point : public false_type { }; struct
111 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<…
/external/astl/tests/
Dtest_type_traits.cpp92 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()
/external/stlport/stlport/
Dtype_traits231 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)>
/external/clang/test/SemaCXX/
Dtype-traits.cpp280 void is_floating_point() in is_floating_point() function