Lines Matching defs:_current
523 Range* _current; // interval iteration: the current Range
631 void rewind_range() { _current = _first; }
632 void next_range() { assert(this != _end, "not allowed on sentinel"); _current = _current->next(); }
633 int current_from() const { return _current->from(); }
634 int current_to() const { return _current->to(); }
635 bool current_at_end() const { return _current == Range::end(); }
636 bool current_intersects(Interval* it) { return _current->intersects(it->_current); };
637 int current_intersects_at(Interval* it) { return _current->intersects_at(it->_current); };
653 Interval* _current; // the current interval coming from unhandled list
679 Interval* current() const { return _current; }