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

  /external/chromium_org/v8/src/
property-details.h 149 bool IsSmi() const { return kind_ == kSmi; }
150 bool IsSmiOrTagged() const { return IsSmi() || IsTagged(); }
152 bool IsSmiOrInteger32() const { return IsSmi() || IsInteger32(); }
159 IsSmi() || IsInteger32() || IsDouble();
objects-inl.h 160 bool Object::IsSmi() const {
280 if (representation.IsSmi() && object->IsUninitialized()) {
620 return IsSmi() || IsHeapNumber();
1064 return IsSmi()
1082 if (object->IsSmi()) return Handle<Smi>::cast(object);
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 512 bool LCodeGen::IsSmi(LConstantOperand* op) const {
513 return chunk_->LookupLiteralRepresentation(op).IsSmi();
550 if (r.IsSmi()) {
    [all...]
  /external/chromium_org/v8/src/arm64/
lithium-codegen-arm64.cc     [all...]
  /external/chromium_org/v8/src/ia32/
lithium-codegen-ia32.cc 554 bool LCodeGen::IsSmi(LConstantOperand* op) const {
555 return chunk_->LookupLiteralRepresentation(op).IsSmi();
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.cc 439 } else if (r.IsSmi()) {
507 bool LCodeGen::IsSmi(LConstantOperand* op) const {
508 return chunk_->LookupLiteralRepresentation(op).IsSmi();
545 if (r.IsSmi()) {
    [all...]
  /external/chromium_org/v8/src/mips64/
lithium-codegen-mips64.cc 384 } else if (r.IsSmi()) {
452 bool LCodeGen::IsSmi(LConstantOperand* op) const {
453 return chunk_->LookupLiteralRepresentation(op).IsSmi();
492 if (r.IsSmi()) {
    [all...]
  /external/chromium_org/v8/src/x87/
lithium-codegen-x87.cc 817 bool LCodeGen::IsSmi(LConstantOperand* op) const {
818 return chunk_->LookupLiteralRepresentation(op).IsSmi();
    [all...]

Completed in 547 milliseconds