Home | History | Annotate | Download | only in src

Lines Matching defs:max

52   BetweenCardinalityImpl(int min, int max)
54 max_(max >= min_ ? max : min_) {
60 } else if (max < 0) {
62 << "but is actually " << max << ".";
64 } else if (min > max) {
65 ss << "The invocation upper bound (" << max
148 // Creates a cardinality that allows between min and max calls.
149 GTEST_API_ Cardinality Between(int min, int max) {
150 return Cardinality(new BetweenCardinalityImpl(min, max));