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

1 2 3

  /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/sources/cxx-stl/llvm-libc++/include/
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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.unary/meta.unary.comp/
array.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, "");
integral.pass.cpp 20 static_assert( std::is_arithmetic<T>::value, "");
lvalue_ref.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/StlSupport/
details.h 56 Eigen::internal::is_arithmetic<T>::value, \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
type_traits 253 /// is_arithmetic
255 struct is_arithmetic
263 : public integral_constant<bool, (is_arithmetic<_Tp>::value
282 : public integral_constant<bool, (is_arithmetic<_Tp>::value
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 253 /// is_arithmetic
255 struct is_arithmetic
263 : public integral_constant<bool, (is_arithmetic<_Tp>::value
282 : public integral_constant<bool, (is_arithmetic<_Tp>::value
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 253 /// is_arithmetic
255 struct is_arithmetic
263 : public integral_constant<bool, (is_arithmetic<_Tp>::value
282 : public integral_constant<bool, (is_arithmetic<_Tp>::value
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
type_traits 253 /// is_arithmetic
255 struct is_arithmetic
263 : public integral_constant<bool, (is_arithmetic<_Tp>::value
282 : public integral_constant<bool, (is_arithmetic<_Tp>::value
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
type_traits 253 /// is_arithmetic
255 struct is_arithmetic
263 : public integral_constant<bool, (is_arithmetic<_Tp>::value
282 : public integral_constant<bool, (is_arithmetic<_Tp>::value
  /external/stlport/stlport/
type_traits 361 struct is_arithmetic :
367 public integral_constant<bool, (is_arithmetic<_Tp>::value || is_void<_Tp>::value)>
395 // is_arithmetic (above)
400 public integral_constant<bool, (is_arithmetic<_Tp>::value ||
409 public integral_constant<bool, (is_arithmetic<_Tp>::value
  /ndk/sources/cxx-stl/stlport/stlport/
type_traits 361 struct is_arithmetic :
367 public integral_constant<bool, (is_arithmetic<_Tp>::value || is_void<_Tp>::value)>
395 // is_arithmetic (above)
400 public integral_constant<bool, (is_arithmetic<_Tp>::value ||
409 public integral_constant<bool, (is_arithmetic<_Tp>::value
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
type_traits 361 struct is_arithmetic :
367 public integral_constant<bool, (is_arithmetic<_Tp>::value || is_void<_Tp>::value)>
395 // is_arithmetic (above)
400 public integral_constant<bool, (is_arithmetic<_Tp>::value ||
409 public integral_constant<bool, (is_arithmetic<_Tp>::value
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
type_traits 361 struct is_arithmetic :
367 public integral_constant<bool, (is_arithmetic<_Tp>::value || is_void<_Tp>::value)>
395 // is_arithmetic (above)
400 public integral_constant<bool, (is_arithmetic<_Tp>::value ||
409 public integral_constant<bool, (is_arithmetic<_Tp>::value

Completed in 1199 milliseconds

1 2 3