Lines Matching refs:max_
54 max_(max >= min_ ? max : min_) { in BetweenCardinalityImpl()
75 virtual int ConservativeUpperBound() const { return max_; } in ConservativeUpperBound()
78 return min_ <= call_count && call_count <= max_; in IsSatisfiedByCallCount()
82 return call_count >= max_; in IsSaturatedByCallCount()
89 const int max_; member in testing::__anon4ca5ef820111::BetweenCardinalityImpl
110 if (max_ == 0) { in DescribeTo()
112 } else if (max_ == INT_MAX) { in DescribeTo()
115 *os << "called at most " << FormatTimes(max_); in DescribeTo()
117 } else if (min_ == max_) { in DescribeTo()
119 } else if (max_ == INT_MAX) { in DescribeTo()
123 *os << "called between " << min_ << " and " << max_ << " times"; in DescribeTo()