Home | History | Annotate | Download | only in vm

Lines Matching defs:i_

205     : table_(table), i_(i), capacity_(capacity)
211 ++i_;
217 return &table_[i_];
221 return (i_ == rhs.i_ && table_ == rhs.table_);
224 size_t to_i() const { return i_; }
229 while (i_ < capacity_ && (table_[i_] == NULL || table_[i_] == kClearedJniWeakGlobal)) {
230 ++i_;
235 size_t i_;