Home | History | Annotate | Download | only in src

Lines Matching defs:max

51   BetweenCardinalityImpl(int min, int max)
53 max_(max >= min_ ? max : min_) {
59 } else if (max < 0) {
61 << "but is actually " << max << ".";
63 } else if (min > max) {
64 ss << "The invocation upper bound (" << max
147 // Creates a cardinality that allows between min and max calls.
148 GTEST_API_ Cardinality Between(int min, int max) {
149 return Cardinality(new BetweenCardinalityImpl(min, max));