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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
is_floating_point.pass.cpp 12 // is_floating_point
21 static_assert( std::is_floating_point<T>::value, "");
22 static_assert( std::is_floating_point<const T>::value, "");
23 static_assert( std::is_floating_point<volatile T>::value, "");
24 static_assert( std::is_floating_point<const volatile T>::value, "");
36 static_assert(!std::is_floating_point<T>::value, "");
37 static_assert(!std::is_floating_point<const T>::value, "");
38 static_assert(!std::is_floating_point<volatile T>::value, "");
39 static_assert(!std::is_floating_point<const volatile T>::value, "");
floating_point.pass.cpp 25 static_assert( std::is_floating_point<T>::value, "");
56 static_assert(!std::is_floating_point<incomplete_type>::value, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.cat/
is_floating_point.pass.cpp 12 // is_floating_point
21 static_assert( std::is_floating_point<T>::value, "");
22 static_assert( std::is_floating_point<const T>::value, "");
23 static_assert( std::is_floating_point<volatile T>::value, "");
24 static_assert( std::is_floating_point<const volatile T>::value, "");
36 static_assert(!std::is_floating_point<T>::value, "");
37 static_assert(!std::is_floating_point<const T>::value, "");
38 static_assert(!std::is_floating_point<volatile T>::value, "");
39 static_assert(!std::is_floating_point<const volatile T>::value, "");
floating_point.pass.cpp 25 static_assert( std::is_floating_point<T>::value, "");
56 static_assert(!std::is_floating_point<incomplete_type>::value, "");
  /external/libcxx/test/std/utilities/time/time.traits/time.traits.is_fp/
treat_as_floating_point.pass.cpp 23 static_assert((std::is_base_of<std::is_floating_point<T>,
26 static_assert(std::is_floating_point<T>::value ==
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.traits/time.traits.is_fp/
treat_as_floating_point.pass.cpp 23 static_assert((std::is_base_of<std::is_floating_point<T>,
26 static_assert(std::is_floating_point<T>::value ==
  /external/protobuf/src/google/protobuf/stubs/
type_traits.h 40 // is_floating_point
90 template <class T> struct is_floating_point;
150 // is_floating_point is false except for the built-in floating-point types.
152 template <class T> struct is_floating_point : false_type { }; struct in namespace:google::protobuf::internal
153 template<> struct is_floating_point<float> : true_type { }; struct in namespace:google::protobuf::internal
154 template<> struct is_floating_point<double> : true_type { }; struct in namespace:google::protobuf::internal
155 template<> struct is_floating_point<long double> : true_type { }; struct in namespace:google::protobuf::internal
156 template <class T> struct is_floating_point<const T> struct in namespace:google::protobuf::internal
157 : is_floating_point<T> { };
158 template <class T> struct is_floating_point<volatile T struct in namespace:google::protobuf::internal
160 template <class T> struct is_floating_point<const volatile T> struct in namespace:google::protobuf::internal
    [all...]
type_traits_unittest.cc 206 // Verify that is_floating_point is true for all floating-point types.
207 EXPECT_TRUE(is_floating_point<float>::value);
208 EXPECT_TRUE(is_floating_point<double>::value);
209 EXPECT_TRUE(is_floating_point<long double>::value);
211 // Verify that is_floating_point is false for a few non-float types.
212 EXPECT_FALSE(is_floating_point<void>::value);
213 EXPECT_FALSE(is_floating_point<long>::value);
214 EXPECT_FALSE(is_floating_point<string>::value);
215 EXPECT_FALSE(is_floating_point<float*>::value);
216 EXPECT_FALSE(is_floating_point<A>::value)
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/windows/protobuf2.5/include/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...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 40 // is_floating_point
90 template <class T> struct is_floating_point;
150 // is_floating_point is false except for the built-in floating-point types.
152 template <class T> struct is_floating_point : false_type { }; struct in namespace:google::protobuf::internal
153 template<> struct is_floating_point<float> : true_type { }; struct in namespace:google::protobuf::internal
154 template<> struct is_floating_point<double> : true_type { }; struct in namespace:google::protobuf::internal
155 template<> struct is_floating_point<long double> : true_type { }; struct in namespace:google::protobuf::internal
156 template <class T> struct is_floating_point<const T> struct in namespace:google::protobuf::internal
157 : is_floating_point<T> { };
158 template <class T> struct is_floating_point<volatile T struct in namespace:google::protobuf::internal
160 template <class T> struct is_floating_point<const volatile T> struct in namespace:google::protobuf::internal
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/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...]
  /external/flatbuffers/include/flatbuffers/
stl_emulation.h 99 template <typename T> using is_floating_point = std::is_floating_point<T>;
105 template <typename T> using is_floating_point =
106 std::tr1::is_floating_point<T>;
113 template <typename T> struct is_floating_point :
114 public std::is_floating_point<T> {};
  /external/libcxx/test/std/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)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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/libcxx/test/libcxx/experimental/filesystem/
convert_file_time.sh.cpp 37 if (sizeof(TimeT) == 8 && !std::is_floating_point<TimeT>::value)
39 else if (sizeof(TimeT) == 4 && !std::is_floating_point<TimeT>::value)
41 else if (std::is_floating_point<TimeT>::value)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/filesystem/
convert_file_time.sh.cpp 37 if (sizeof(TimeT) == 8 && !std::is_floating_point<TimeT>::value)
39 else if (sizeof(TimeT) == 4 && !std::is_floating_point<TimeT>::value)
41 else if (std::is_floating_point<TimeT>::value)
  /external/libcxx/include/
cmath 551 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
563 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
571 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
583 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
591 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
603 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
cmath 557 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
569 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
577 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
589 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
597 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
609 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
cmath 551 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
563 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
571 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
583 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
591 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
603 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
cmath 551 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
563 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
571 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
583 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
591 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
603 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
cmath 551 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
563 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
571 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
583 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type
591 _LIBCPP_CONSTEXPR typename enable_if<is_floating_point<_A1>::value, bool>::type
603 _LIBCPP_CONSTEXPR typename enable_if<!is_floating_point<_A1>::value, bool>::type

Completed in 975 milliseconds

1 2 3 4 5 6 7 8 91011>>