Home | History | Annotate | Download | only in gfx

Lines Matching refs:max_

21 // A solitary break at position 0 applies to the entire space [0, max_).
22 // |max_| is initially 0 and should be set to match the available ranged space.
24 // The value of the terminal break applies to the range [break.first, max_).
53 // the next break's start position (or |max_| for the terminal break).
62 // Check for ordered breaks [0, |max_|) with no adjacent equivalent values.
67 size_t max_;
71 BreakList<T>::BreakList() : breaks_(1, Break(0, T())), max_(0) {
75 BreakList<T>::BreakList(T value) : breaks_(1, Break(0, value)), max_(0) {
90 DCHECK(ui::Range(0, max_).Contains(range));
101 if (trailing_value != value && range.end() != max_)
114 max_ = max;
141 return ui::Range(i->first, next == breaks_.end() ? max_ : next->first);
167 if (max_ > 0)
168 DCHECK_LT(breaks_.back().first, max_) << "Break beyond max position.";