Lines Matching refs:id_
464 FeedbackSlot() : id_(kInvalidSlot) {}
465 explicit FeedbackSlot(int id) : id_(id) {}
467 int ToInt() const { return id_; }
470 bool IsInvalid() const { return id_ == kInvalidSlot; }
472 bool operator==(FeedbackSlot that) const { return this->id_ == that.id_; }
480 return FeedbackSlot(id_ + offset);
486 int id_;
493 explicit constexpr BytecodeOffset(int id) : id_(id) {}
494 constexpr int ToInt() const { return id_; }
505 return id_ == ConstructStubCreate().ToInt() ||
506 id_ == ConstructStubInvoke().ToInt();
509 constexpr bool IsNone() const { return id_ == kNoneId; }
511 return id_ == other.id_;
514 return id_ != other.id_;
531 int id_;