Home | History | Annotate | Download | only in src

Lines Matching refs:next_

357 HUseIterator::HUseIterator(HUseListNode* head) : next_(head) {
363 current_ = next_;
365 next_ = current_->tail();
661 previous_->next_ = next_;
662 if (next_ == NULL) {
666 next_->previous_ = previous_;
679 prev->next_ = this;
681 next_ = next;
693 ASSERT(!IsControlInstruction() || previous->next_ == NULL);
706 HInstruction* next = previous->next_;
710 next = previous->next_;
714 next_ = next;
716 previous->next_ = this;