Home | History | Annotate | Download | only in vm

Lines Matching refs:table_

205             table_(table), i_(i), capacity_(capacity) {
216 return &table_[i_].obj;
220 return (i_ == rhs.i_ && table_ == rhs.table_);
226 while (i_ < capacity_ && (table_[i_].obj == NULL
227 || table_[i_].obj == kClearedJniWeakGlobal)) {
232 IndirectRefSlot* table_;
255 IndirectRefSlot* table_;
339 return iterator(table_, 0, capacity());
343 return iterator(table_, capacity(), capacity());