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

1 2

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_floating_point.hpp 18 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_floating_point,T,false)
19 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_floating_point,float,true)
20 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_floating_point,double,true)
21 BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_floating_point,long double,true)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.traits/time.traits.is_fp/
treat_as_floating_point.pass.cpp 21 static_assert((std::is_base_of<std::is_floating_point<T>,
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits.h 39 // 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<volatile T struct in namespace:google::protobuf::internal
133 template <class T> struct is_floating_point<const volatile T> struct in namespace:google::protobuf::internal
    [all...]
type_traits_unittest.cc 59 using google::protobuf::internal::is_floating_point;
223 // Verify that is_floating_point is true for all floating-point types.
224 EXPECT_TRUE(is_floating_point<float>::value);
225 EXPECT_TRUE(is_floating_point<double>::value);
226 EXPECT_TRUE(is_floating_point<long double>::value);
228 // Verify that is_floating_point is false for a few non-float types.
229 EXPECT_FALSE(is_floating_point<void>::value);
230 EXPECT_FALSE(is_floating_point<long>::value);
231 EXPECT_FALSE(is_floating_point<string>::value);
232 EXPECT_FALSE(is_floating_point<float*>::value)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
promotion.hpp 27 #include <boost/type_traits/is_floating_point.hpp> // for boost::is_floating_point;
88 typename mpl::and_<is_floating_point<T1P>, is_floating_point<T2P> >::type, // both T1P and T2P are floating-point?
97 typename mpl::if_< typename mpl::and_<mpl::not_<is_floating_point<T2P> >, ::boost::is_convertible<T1P, T2P> >, T2P, T1P>::type>::type type;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/cmplx.over/
conj.pass.cpp 34 test(T x, typename std::enable_if<std::is_floating_point<T>::value>::type* = 0)
43 !std::is_floating_point<T>::value>::type* = 0)
proj.pass.cpp 34 test(T x, typename std::enable_if<std::is_floating_point<T>::value>::type* = 0)
43 !std::is_floating_point<T>::value>::type* = 0)
  /external/chromium_org/third_party/cld/base/
type_traits.h 12 // 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 ||
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
lvalue_ref.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
rvalue_ref.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
void.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
array.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
class.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
enum.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
floating_point.pass.cpp 21 static_assert( std::is_floating_point<T>::value, "");
function.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
integral.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
member_function_pointer.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
member_object_pointer.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
pointer.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
union.pass.cpp 21 static_assert(!std::is_floating_point<T>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
quiet_NaN.pass.cpp 44 test_imp<T>(std::is_floating_point<T>());
signaling_NaN.pass.cpp 44 test_imp<T>(std::is_floating_point<T>());
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 18 #include <boost/type_traits/is_floating_point.hpp>
136 if(::boost::math_detail::is_nan_helper(t, ::boost::is_floating_point<T>()))
139 if(boost::math_detail::is_nan_helper(t, ::boost::is_floating_point<T>()))
315 typedef typename boost::is_floating_point<T>::type fp_tag;
375 typedef typename boost::is_floating_point<T>::type fp_tag;
453 typedef typename boost::is_floating_point<T>::type fp_tag;
523 typedef typename boost::is_floating_point<T>::type fp_tag;
sign.hpp 113 typedef typename boost::is_floating_point<T>::type fp_tag;
127 typedef typename boost::is_floating_point<T>::type fp_tag;

Completed in 360 milliseconds

1 2