Searched defs:IsInteger (Results 1 - 7 of 7) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DNumTraits.h37 * \li An enum value \a IsInteger. It is equal to \c 1 if \a T is an integer type such as \c int,
54 IsInteger = std::numeric_limits<T>::is_integer, enumerator in enum:Eigen::GenericNumTraits::__anon20662
65 IsInteger,
78 static inline T lowest() { return IsInteger ? (std::numeric_limits<T>::min)() : (-(std::numeric_limits<T>::max)()); }
82 HasFloatingPoint = !IsInteger
136 IsInteger = NumTraits<Scalar>::IsInteger,
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTypeTraits.h31 // IsInteger<T>::value
51 template<typename T> struct IsInteger { static const bool value = false; }; struct in namespace:WTF
52 template<> struct IsInteger<bool> { static const bool value = true; }; struct in namespace:WTF
53 template<> struct IsInteger<char> { static const bool value = true; }; struct in namespace:WTF
54 template<> struct IsInteger<signed char> { static const bool value = true; }; struct in namespace:WTF
55 template<> struct IsInteger<unsigned char> { static const bool value = true; }; struct in namespace:WTF
56 template<> struct IsInteger<short> { static const bool value = true; }; struct in namespace:WTF
57 template<> struct IsInteger<unsigned short> { static const bool value = true; }; struct in namespace:WTF
58 template<> struct IsInteger<int> { static const bool value = true; }; struct in namespace:WTF
59 template<> struct IsInteger<unsigne struct in namespace:WTF
60 template<> struct IsInteger<long> { static const bool value = true; }; struct in namespace:WTF
61 template<> struct IsInteger<unsigned long> { static const bool value = true; }; struct in namespace:WTF
62 template<> struct IsInteger<long long> { static const bool value = true; }; struct in namespace:WTF
63 template<> struct IsInteger<unsigned long long> { static const bool value = true; }; struct in namespace:WTF
65 template<> struct IsInteger<wchar_t> { static const bool value = true; }; struct in namespace:WTF
[all...]
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-unittest.h132 bool IsInteger(const InstructionOperand* operand) const { function in class:v8::internal::compiler::InstructionSelectorTest::FINAL
133 return IsInteger(ToVreg(operand));
135 bool IsInteger(int virtual_register) const { function in class:v8::internal::compiler::InstructionSelectorTest::FINAL
/external/ceres-solver/include/ceres/
H A Djet.h656 IsInteger = 0, enumerator in enum:Eigen::NumTraits::__anon1757
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_objects.h180 FX_BOOL IsInteger() const function in class:CPDF_Number
/external/vixl/src/a64/
H A Ddebugger-a64.cc53 virtual bool IsInteger() const { return false; } function in class:vixl::Token
167 virtual bool IsInteger() const { return true; } function in class:vixl::IntegerToken
172 VIXL_ASSERT(tok->IsInteger());
1313 if (!first->IsInteger()) {
1336 if (!first->IsInteger()) {
1522 } else if (second->IsInteger()) {
1534 if (!second->IsFormat() || !third->IsInteger()) {
/external/chromium_org/v8/src/
H A Dtypes.h521 static bool IsInteger(double x) { function in class:v8::internal::TypeImpl
524 static bool IsInteger(i::Object* x) { function in class:v8::internal::TypeImpl
525 return x->IsNumber() && IsInteger(x->Number());

Completed in 1506 milliseconds