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

1 2

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
udt_builtin_mixture.hpp 13 #include "boost/type_traits/is_arithmetic.hpp"
57 typedef is_arithmetic<S> S_builtin ;
58 typedef is_arithmetic<T> T_builtin ;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_arithmetic.hpp 42 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_arithmetic,T,__is_arithmetic(T))
44 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_arithmetic,T,::boost::detail::is_arithmetic_impl<T>::value)
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
lvalue_ref.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
class.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
enum.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
floating_point.pass.cpp 20 static_assert( std::is_arithmetic<T>::value, "");
function.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
member_function_pointer.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
member_object_pointer.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
pointer.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
rvalue_ref.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
union.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
void.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
lvalue_ref.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
class.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
enum.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
floating_point.pass.cpp 20 static_assert( std::is_arithmetic<T>::value, "");
function.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
member_function_pointer.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
member_object_pointer.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
pointer.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
rvalue_ref.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
union.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
void.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
  /external/eigen/Eigen/src/Core/util/
Meta.h 56 template<typename T> struct is_arithmetic { enum { value = false }; }; struct in namespace:Eigen::internal
57 template<> struct is_arithmetic<float> { enum { value = true }; }; struct in namespace:Eigen::internal
58 template<> struct is_arithmetic<double> { enum { value = true }; }; struct in namespace:Eigen::internal
59 template<> struct is_arithmetic<long double> { enum { value = true }; }; struct in namespace:Eigen::internal
60 template<> struct is_arithmetic<bool> { enum { value = true }; }; struct in namespace:Eigen::internal
61 template<> struct is_arithmetic<char> { enum { value = true }; }; struct in namespace:Eigen::internal
62 template<> struct is_arithmetic<signed char> { enum { value = true }; }; struct in namespace:Eigen::internal
63 template<> struct is_arithmetic<unsigned char> { enum { value = true }; }; struct in namespace:Eigen::internal
64 template<> struct is_arithmetic<signed short> { enum { value = true }; }; struct in namespace:Eigen::internal
65 template<> struct is_arithmetic<unsigned short>{ enum { value = true }; } struct in namespace:Eigen::internal
66 template<> struct is_arithmetic<signed int> { enum { value = true }; }; struct in namespace:Eigen::internal
67 template<> struct is_arithmetic<unsigned int> { enum { value = true }; }; struct in namespace:Eigen::internal
68 template<> struct is_arithmetic<signed long> { enum { value = true }; }; struct in namespace:Eigen::internal
69 template<> struct is_arithmetic<unsigned long> { enum { value = true }; }; struct in namespace:Eigen::internal
    [all...]

Completed in 414 milliseconds

1 2