Home | History | Annotate | Download | only in src

Lines Matching refs: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_;
88 const int max_;
109 if (max_ == 0) {
111 } else if (max_ == INT_MAX) {
114 *os << "called at most " << FormatTimes(max_);
116 } else if (min_ == max_) {
118 } else if (max_ == INT_MAX) {
121 // 0 < min_ < max_ < INT_MAX
122 *os << "called between " << min_ << " and " << max_ << " times";