Home | History | Annotate | Download | only in src

Lines Matching defs:current_

226       : predecessor_list_(block->predecessors()), current_(0) { }
228 bool Done() { return current_ >= predecessor_list_->length(); }
229 HBasicBlock* Current() { return predecessor_list_->at(current_); }
230 void Advance() { current_++; }
234 int current_;