Home | History | Annotate | Download | only in compiler

Lines Matching full:index_

852     return index_;
856 return static_cast<size_t>(index_);
858 bool IsValid() const { return index_ >= 0; }
864 return other.index_ == this->index_ + 1;
868 bool operator==(RpoNumber other) const { return index_ == other.index_; }
869 bool operator!=(RpoNumber other) const { return index_ != other.index_; }
870 bool operator>(RpoNumber other) const { return index_ > other.index_; }
871 bool operator<(RpoNumber other) const { return index_ < other.index_; }
872 bool operator<=(RpoNumber other) const { return index_ <= other.index_; }
873 bool operator>=(RpoNumber other) const { return index_ >= other.index_; }
876 explicit RpoNumber(int32_t index) : index_(index) {}
877 int32_t index_;