Home | History | Annotate | Download | only in src

Lines Matching defs:max_

54         max_(max >= min_ ? max : min_) {
75 virtual int ConservativeUpperBound() const { return max_; }
78 return min_ <= call_count && call_count <= max_;
82 return call_count >= max_;
89 const int max_;
110 if (max_ == 0) {
112 } else if (max_ == INT_MAX) {
115 *os << "called at most " << FormatTimes(max_);
117 } else if (min_ == max_) {
119 } else if (max_ == INT_MAX) {
122 // 0 < min_ < max_ < INT_MAX
123 *os << "called between " << min_ << " and " << max_ << " times";