Home | History | Annotate | Download | only in gfx

Lines Matching defs: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_).
47 size_t max() const { return max_; }
54 // the next break's start position (or |max_| for the terminal break).
63 // Check for ordered breaks [0, |max_|) with no adjacent equivalent values.
68 size_t max_;
72 BreakList<T>::BreakList() : breaks_(1, Break(0, T())), max_(0) {
76 BreakList<T>::BreakList(T value) : breaks_(1, Break(0, value)), max_(0) {
91 DCHECK(Range(0, max_).Contains(range));
102 if (trailing_value != value && range.end() != max_)
115 max_ = max;
142 return Range(i->first, next == breaks_.end() ? max_ : next->first);
168 if (max_ > 0)
169 DCHECK_LT(breaks_.back().first, max_) << "Break beyond max position.";