Lines Matching refs:index_
852 return index_; in ToInt()
856 return static_cast<size_t>(index_); in ToSize()
858 bool IsValid() const { return index_ >= 0; } in IsValid()
864 return other.index_ == this->index_ + 1; in IsNext()
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) {} in RpoNumber()
877 int32_t index_; variable