HomeSort by relevance Sort by last modified time
    Searched refs:is_floating_point (Results 1 - 5 of 5) sorted by null

  /external/astl/include/
type_traits.h 108 // is_floating_point
109 template<typename> struct is_floating_point : public false_type { }; struct in namespace:std
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<_T>::value)> { };
  /external/astl/tests/
test_type_traits.cpp 92 using std::is_floating_point;
93 EXPECT_TRUE(is_floating_point<float>::value == true);
94 EXPECT_TRUE(is_floating_point<double>::value == true);
95 EXPECT_TRUE(is_floating_point<long double>::value == true);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
random.h     [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp 334 void is_floating_point() function
    [all...]

Completed in 2903 milliseconds