Home | History | Annotate | Download | only in src

Lines Matching refs:current_

64       current_(0) {
69 bool TempIterator::Done() { return current_ >= limit_; }
74 return instr_->TempAt(current_);
79 while (current_ < limit_ && instr_->TempAt(current_) == NULL) ++current_;
84 ++current_;
92 current_(0) {
97 bool InputIterator::Done() { return current_ >= limit_; }
102 return instr_->InputAt(current_);
107 ++current_;
113 while (current_ < limit_ && instr_->InputAt(current_)->IsConstantOperand()) {
114 ++current_;