/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/ |
D | is_arithmetic.pass.cpp | 21 static_assert( std::is_arithmetic<T>::value, ""); in test_is_arithmetic() 22 static_assert( std::is_arithmetic<const T>::value, ""); in test_is_arithmetic() 23 static_assert( std::is_arithmetic<volatile T>::value, ""); in test_is_arithmetic() 24 static_assert( std::is_arithmetic<const volatile T>::value, ""); in test_is_arithmetic() 36 static_assert(!std::is_arithmetic<T>::value, ""); in test_is_not_arithmetic() 37 static_assert(!std::is_arithmetic<const T>::value, ""); in test_is_not_arithmetic() 38 static_assert(!std::is_arithmetic<volatile T>::value, ""); in test_is_not_arithmetic() 39 static_assert(!std::is_arithmetic<const volatile T>::value, ""); in test_is_not_arithmetic()
|
D | lvalue_ref.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_lvalue_ref()
|
D | rvalue_ref.pass.cpp | 22 static_assert(!std::is_arithmetic<T>::value, ""); in test_rvalue_ref()
|
D | void.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_void_imp()
|
D | floating_point.pass.cpp | 20 static_assert( std::is_arithmetic<T>::value, ""); in test_floating_point_imp()
|
D | member_object_pointer.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_member_object_pointer_imp()
|
D | enum.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_enum_imp()
|
D | pointer.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_pointer_imp()
|
D | union.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_union_imp()
|
D | function.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_function_imp()
|
D | member_function_pointer.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_member_function_pointer_imp()
|
D | class.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_class_imp()
|
D | array.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_array_imp()
|
/external/libcxx/include/ |
D | math.h | 437 std::is_arithmetic<_A1>::value && std::numeric_limits<_A1>::has_infinity, 447 std::is_arithmetic<_A1>::value && !std::numeric_limits<_A1>::has_infinity, 471 std::is_arithmetic<_A1>::value && std::numeric_limits<_A1>::has_infinity, 481 std::is_arithmetic<_A1>::value && !std::numeric_limits<_A1>::has_infinity, 594 std::is_arithmetic<_A1>::value && 595 std::is_arithmetic<_A2>::value, 624 std::is_arithmetic<_A1>::value && 625 std::is_arithmetic<_A2>::value, 654 std::is_arithmetic<_A1>::value && 655 std::is_arithmetic<_A2>::value, [all …]
|
/external/pdfium/third_party/base/numerics/ |
D | safe_conversions_impl.h | 46 static_assert(std::is_arithmetic<T>::value, "Argument must be numeric."); in IsValueNegative() 53 static_assert(std::is_arithmetic<T>::value, "Argument must be numeric."); in IsValueNegative() 345 static_assert(std::is_arithmetic<Src>::value, "Argument must be numeric."); 346 static_assert(std::is_arithmetic<Dst>::value, "Result must be numeric."); 546 static const bool value = std::is_arithmetic<type>::value; 556 static const bool value = std::is_arithmetic<type>::value; 570 static const bool is_numeric = std::is_arithmetic<type>::value; 618 static_assert(std::is_arithmetic<L>::value && std::is_arithmetic<R>::value, 639 static_assert(std::is_arithmetic<L>::value && std::is_arithmetic<R>::value, 660 static_assert(std::is_arithmetic<L>::value && std::is_arithmetic<R>::value, [all …]
|
/external/eigen/Eigen/src/Core/util/ |
D | Meta.h | 85 template<typename T> struct is_arithmetic { enum { value = false }; }; 86 template<> struct is_arithmetic<float> { enum { value = true }; }; 87 template<> struct is_arithmetic<double> { enum { value = true }; }; 88 template<> struct is_arithmetic<long double> { enum { value = true }; }; 89 template<> struct is_arithmetic<bool> { enum { value = true }; }; 90 template<> struct is_arithmetic<char> { enum { value = true }; }; 91 template<> struct is_arithmetic<signed char> { enum { value = true }; }; 92 template<> struct is_arithmetic<unsigned char> { enum { value = true }; }; 93 template<> struct is_arithmetic<signed short> { enum { value = true }; }; 94 template<> struct is_arithmetic<unsigned short>{ enum { value = true }; }; [all …]
|
/external/libchrome/base/numerics/ |
D | safe_conversions_impl.h | 53 static_assert(std::is_arithmetic<T>::value, "Argument must be numeric."); in IsValueNegative() 60 static_assert(std::is_arithmetic<T>::value, "Argument must be numeric."); in IsValueNegative() 401 static_assert(std::is_arithmetic<Src>::value, "Argument must be numeric."); 402 static_assert(std::is_arithmetic<Dst>::value, "Result must be numeric."); 584 static const bool value = std::is_arithmetic<type>::value; 590 static const bool value = std::is_arithmetic<type>::value; 607 static const bool is_numeric = std::is_arithmetic<type>::value; 701 static_assert(std::is_arithmetic<L>::value && std::is_arithmetic<R>::value, 722 static_assert(std::is_arithmetic<L>::value && std::is_arithmetic<R>::value, 743 static_assert(std::is_arithmetic<L>::value && std::is_arithmetic<R>::value, [all …]
|
D | clamped_math_impl.h | 289 typename std::enable_if<std::is_arithmetic<T>::value && 290 std::is_arithmetic<U>::value>::type> { 306 typename std::enable_if<std::is_arithmetic<T>::value && 307 std::is_arithmetic<U>::value>::type> {
|
D | ranges.h | 21 static_assert(std::is_arithmetic<T>::value, "Argument must be arithmetic"); in IsApproximatelyEqual()
|
D | checked_math_impl.h | 385 typename std::enable_if<std::is_arithmetic<T>::value && 386 std::is_arithmetic<U>::value>::type> { 406 typename std::enable_if<std::is_arithmetic<T>::value && 407 std::is_arithmetic<U>::value>::type> { 495 static_assert(std::is_arithmetic<Src>::value, "Argument must be numeric.");
|
/external/tensorflow/tensorflow/cc/framework/ |
D | ops.h | 109 std::is_arithmetic<T>::value || 122 std::is_arithmetic<T>::value || 135 std::is_arithmetic<T>::value || 148 std::is_arithmetic<T>::value || 207 std::is_arithmetic<T>::value ||
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | string_utils.h | 30 std::is_arithmetic<T>::value, in ToString()
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | string_utils.h | 30 std::is_arithmetic<T>::value, in ToString()
|
/external/libcxx/test/std/language.support/support.types/ |
D | byte.pass.cpp | 24 static_assert(!std::is_arithmetic<std::byte>::value, "" );
|
/external/perfetto/include/perfetto/base/ |
D | hash.h | 38 typename std::enable_if<std::is_arithmetic<T>::value>* = nullptr>
|