Lines Matching defs:max
56 return Interval(std::min(from_, that.from_), std::max(to_, that.to_));
127 bool IsEverything(base::uc32 max) const { return from_ == 0 && to_ >= max; }
409 RegExpQuantifier(int min, int max, QuantifierType type, RegExpTree* body)
412 max_(max),
419 if (max > 0 && body->max_match() > kInfinity / max) {
422 max_match_ = max * body->max_match();
428 static RegExpNode* ToNode(int min, int max, bool is_greedy, RegExpTree* body,
435 int max() const { return max_; }