Searched defs:GetNext (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dssa_liveness_analysis.h62 LiveRange* GetNext() const { return next_; } function in class:art::LiveRange
108 UsePosition* GetNext() const { return next_; } function in class:art::UsePosition
206 first_range_ = first_range_->GetNext();
251 current = current->GetNext();
268 my_range = my_range->GetNext();
274 other_range = other_range->GetNext();
316 use = use->GetNext();
415 } while ((current = current->GetNext()) != nullptr);
422 } while ((use = use->GetNext()) != nullptr);
H A Dnodes.h497 HInstruction* GetNext() const { return next_; } function in class:art::HInstruction
691 next_ = Done() ? nullptr : instruction_->GetNext();
698 next_ = Done() ? nullptr : instruction_->GetNext();

Completed in 45 milliseconds