Searched defs:IsInteger (Results 1 - 9 of 9) 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::__anon5132
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/pdfium/xfa/src/fxjse/src/
H A Dvalue.h65 V8_INLINE FX_BOOL IsInteger() const { function in class:CFXJSE_Value
/external/v8/test/unittests/compiler/
H A Dinstruction-selector-unittest.h183 bool IsInteger(const InstructionOperand* operand) const { function in class:v8::internal::compiler::InstructionSelectorTest::final
184 return IsInteger(ToVreg(operand));
187 bool IsInteger(const Node* node) const { return IsInteger(ToVreg(node)); } function in class:v8::internal::compiler::InstructionSelectorTest::final
245 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::__anon831
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_objects.h177 FX_BOOL IsInteger() const { return m_bInteger; } function in class:CPDF_Number
/external/v8/src/
H A Dtypes.cc20 bool Type::IsInteger(i::Object* x) { function in class:v8::internal::Type
21 return x->IsNumber() && Type::IsInteger(x->Number());
61 return IsInteger(*rhs->Value()) &&
68 return IsInteger(val) &&
654 if (IsInteger(value)) {
H A Dtypes.h472 static bool IsInteger(double x) { function in class:v8::internal::BitsetType::RangeType
477 DCHECK(IsInteger(lim.min) && IsInteger(lim.max));
814 static bool IsInteger(i::Object* x);
815 static bool IsInteger(double x) { function in class:v8::internal::BitsetType::Type
/external/v8/test/cctest/
H A Dtest-types.cc18 static bool IsInteger(double x) { function
23 static bool IsInteger(i::Object* x) { function
24 return x->IsNumber() && IsInteger(x->Number());
632 CHECK(IsInteger(type->Min()) && IsInteger(type->Max()));
885 // If IsInteger(v) then Constant(v)->Is(Range(v, v)).
888 if (type->IsConstant() && IsInteger(*type->AsConstant()->Value())) {
894 // If Constant(x)->Is(Range(min,max)) then IsInteger(v) and min <= x <= max.
903 CHECK(IsInteger(x) && min <= x && x <= max);
/external/vixl/src/vixl/a64/
H A Ddebugger-a64.cc53 virtual bool IsInteger() const { return false; } function in class:vixl::Token
172 virtual bool IsInteger() const { return true; } function in class:vixl::IntegerToken
177 VIXL_ASSERT(tok->IsInteger());
1234 if (!first->IsInteger()) {
1257 if (!first->IsInteger()) {
1443 } else if (second->IsInteger()) {
1455 if (!second->IsFormat() || !third->IsInteger()) {

Completed in 407 milliseconds