Searched refs:is_arithmetic (Results 1 – 25 of 26) sorted by relevance
12
/external/eigen/Eigen/src/Core/util/ |
D | Meta.h | 56 template<typename T> struct is_arithmetic { enum { value = false }; }; 57 template<> struct is_arithmetic<float> { enum { value = true }; }; 58 template<> struct is_arithmetic<double> { enum { value = true }; }; 59 template<> struct is_arithmetic<long double> { enum { value = true }; }; 60 template<> struct is_arithmetic<bool> { enum { value = true }; }; 61 template<> struct is_arithmetic<char> { enum { value = true }; }; 62 template<> struct is_arithmetic<signed char> { enum { value = true }; }; 63 template<> struct is_arithmetic<unsigned char> { enum { value = true }; }; 64 template<> struct is_arithmetic<signed short> { enum { value = true }; }; 65 template<> struct is_arithmetic<unsigned short>{ enum { value = true }; }; [all …]
|
/external/libcxx/include/ |
D | cmath | 328 typename std::enable_if<std::is_arithmetic<_A1>::value, bool>::type 352 typename std::enable_if<std::is_arithmetic<_A1>::value, int>::type 376 typename std::enable_if<std::is_arithmetic<_A1>::value, bool>::type 400 typename std::enable_if<std::is_arithmetic<_A1>::value, bool>::type 424 typename std::enable_if<std::is_arithmetic<_A1>::value, bool>::type 448 typename std::enable_if<std::is_arithmetic<_A1>::value, bool>::type 474 std::is_arithmetic<_A1>::value && 475 std::is_arithmetic<_A2>::value, 504 std::is_arithmetic<_A1>::value && 505 std::is_arithmetic<_A2>::value, [all …]
|
D | type_traits | 52 template <class T> struct is_arithmetic; 530 // is_arithmetic 532 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_arithmetic 541 is_arithmetic<_Tp>::value> {}; 546 : public integral_constant<bool, is_arithmetic<_Tp>::value || 697 template <class _Tp, bool = is_arithmetic<_Tp>::value> 712 template <class _Tp, bool = is_arithmetic<_Tp>::value>
|
D | complex | 1189 is_arithmetic<_Up>::value, 1202 is_arithmetic<_Tp>::value,
|
D | limits | 140 template <class _Tp, bool = is_arithmetic<_Tp>::value>
|
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/ |
D | meta.unary.comp.pass.cpp | 37 static_assert(ex::is_arithmetic_v<T> == std::is_arithmetic<T>::value, ""); in main() 42 static_assert(ex::is_arithmetic_v<T> == std::is_arithmetic<T>::value, ""); in main()
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/ |
D | rvalue_ref.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_rvalue_ref()
|
D | lvalue_ref.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_lvalue_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 | class.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_class_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 | function.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_function_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 | member_function_pointer.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_member_function_pointer_imp()
|
D | array.pass.cpp | 20 static_assert(!std::is_arithmetic<T>::value, ""); in test_array_imp()
|
D | integral.pass.cpp | 20 static_assert( std::is_arithmetic<T>::value, ""); in test_integral_imp()
|
/external/eigen/Eigen/src/StlSupport/ |
D | details.h | 56 Eigen::internal::is_arithmetic<T>::value, \
|
/external/eigen/Eigen/src/Core/ |
D | NumTraits.h | 57 RequireInitialization = internal::is_arithmetic<T>::value ? 0 : 1,
|
D | DenseCoeffsBase.h | 18 …typedef typename conditional<is_arithmetic<T>::value, T, typename add_const_on_value_type<T>::type… 51 … typename internal::conditional<internal::is_arithmetic<Scalar>::value, Scalar, const Scalar>::type
|
/external/eigen/Eigen/src/Core/arch/SSE/ |
D | PacketMath.h | 29 template<> struct is_arithmetic<__m128> { enum { value = true }; }; 30 template<> struct is_arithmetic<__m128i> { enum { value = true }; }; 31 template<> struct is_arithmetic<__m128d> { enum { value = true }; };
|
/external/libcxx/include/experimental/ |
D | type_traits | 58 = is_arithmetic<T>::value; 245 = is_arithmetic<_Tp>::value;
|
/external/vulkan-validation-layers/libs/vkjson/ |
D | vkjson.cc | 362 typename std::enable_if<std::is_arithmetic<T>::value, void>::type;
|
12