Home | History | Annotate | Download | only in src

Lines Matching refs:Interval

676 // A simple closed interval.
677 class Interval {
679 Interval() : from_(kNone), to_(kNone) { }
680 Interval(int from, int to) : from_(from), to_(to) { }
681 Interval Union(Interval that) {
687 return Interval(Min(from_, that.from_), Max(to_, that.to_));
695 static Interval Empty() { return Interval(); }
730 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success);
1168 explicit DeferredClearCaptures(Interval range)
1171 Interval range() { return range_; }
1173 Interval range_;