HomeSort by relevance Sort by last modified time
    Searched defs:IsInteger (Results 1 - 8 of 8) sorted by null

  /external/eigen/Eigen/src/Core/
NumTraits.h 37 * \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,
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/v8/src/compiler/
instruction-selector-unittest.h 132 bool IsInteger(const InstructionOperand* operand) const {
133 return IsInteger(ToVreg(operand));
135 bool IsInteger(int virtual_register) const {
  /external/chromium_org/third_party/WebKit/Source/wtf/
TypeTraits.h 31 // IsInteger<T>::value
51 template<typename T> struct IsInteger { static const bool value = false; };
52 template<> struct IsInteger<bool> { static const bool value = true; };
53 template<> struct IsInteger<char> { static const bool value = true; };
54 template<> struct IsInteger<signed char> { static const bool value = true; };
55 template<> struct IsInteger<unsigned char> { static const bool value = true; };
56 template<> struct IsInteger<short> { static const bool value = true; };
57 template<> struct IsInteger<unsigned short> { static const bool value = true; };
58 template<> struct IsInteger<int> { static const bool value = true; };
59 template<> struct IsInteger<unsigned int> { static const bool value = true; }
    [all...]
  /external/ceres-solver/include/ceres/
jet.h 656 IsInteger = 0,
  /external/pdfium/core/include/fpdfapi/
fpdf_objects.h 180 FX_BOOL IsInteger() const
  /art/runtime/verifier/
reg_type.h 51 virtual bool IsInteger() const { return false; }
150 return IsChar() || IsInteger() || IsFloat() || IsConstant() || IsByte() || IsShort() ||
169 return IsInteger() || IsConstant() || IsByte() || IsShort() || IsChar() || IsBoolean();
373 bool IsInteger() const {
  /external/chromium_org/v8/src/
types.h 521 static bool IsInteger(double x) {
524 static bool IsInteger(i::Object* x) {
525 return x->IsNumber() && IsInteger(x->Number());
    [all...]
  /external/vixl/src/a64/
debugger-a64.cc 53 virtual bool IsInteger() const { return false; }
167 virtual bool IsInteger() const { return true; }
172 VIXL_ASSERT(tok->IsInteger());
    [all...]

Completed in 610 milliseconds