HomeSort by relevance Sort by last modified time
    Searched refs:is_arithmetic (Results 1 - 25 of 35) 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 ;
conversion_traits.hpp 13 #include "boost/type_traits/is_arithmetic.hpp"
45 typedef typename mpl::if_< is_arithmetic<S>, S, S const&>::type argument_type ;
  /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)
is_scalar.hpp 12 #include <boost/type_traits/is_arithmetic.hpp>
31 ::boost::is_arithmetic<T>::value,
is_enum.hpp 17 #include <boost/type_traits/is_arithmetic.hpp>
117 ::boost::is_arithmetic<T>::value
128 ::boost::is_arithmetic<T>::value
139 ::boost::is_arithmetic<T>::value
is_convertible.hpp 22 #include <boost/type_traits/is_arithmetic.hpp>
355 ::boost::is_arithmetic<From>::value,
356 ::boost::is_arithmetic<To>::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, "");
array.pass.cpp 20 static_assert(!std::is_arithmetic<T>::value, "");
integral.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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
converter_policies.hpp 20 #include "boost/type_traits/is_arithmetic.hpp"
33 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ;
55 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ;
74 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ;
93 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
call_traits.hpp 26 #include <boost/type_traits/is_arithmetic.hpp>
89 ::boost::is_arithmetic<T>::value,
  /external/eigen/Eigen/src/StlSupport/
details.h 56 Eigen::internal::is_arithmetic<T>::value, \
  /external/eigen/Eigen/src/Core/
NumTraits.h 57 RequireInitialization = internal::is_arithmetic<T>::value ? 0 : 1,
DenseCoeffsBase.h 18 typedef typename conditional<is_arithmetic<T>::value, T, typename add_const_on_value_type<T>::type>::type type;
51 typename internal::conditional<internal::is_arithmetic<Scalar>::value, Scalar, const Scalar>::type

Completed in 507 milliseconds

1 2