Lines Matching refs:max_
53 max_(max >= min_ ? max : min_) { in BetweenCardinalityImpl()
74 int ConservativeUpperBound() const override { return max_; } in ConservativeUpperBound()
77 return min_ <= call_count && call_count <= max_; in IsSatisfiedByCallCount()
81 return call_count >= max_; in IsSaturatedByCallCount()
88 const int max_; member in testing::__anon3a3374a10111::BetweenCardinalityImpl
109 if (max_ == 0) { in DescribeTo()
111 } else if (max_ == INT_MAX) { in DescribeTo()
114 *os << "called at most " << FormatTimes(max_); in DescribeTo()
116 } else if (min_ == max_) { in DescribeTo()
118 } else if (max_ == INT_MAX) { in DescribeTo()
122 *os << "called between " << min_ << " and " << max_ << " times"; in DescribeTo()