HomeSort by: relevance | last modified time | path
    Searched defs:max_ (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/src/
gmock-cardinalities.cc 53 max_(max >= min_ ? max : min_) {
74 int ConservativeUpperBound() const override { return max_; }
77 return min_ <= call_count && call_count <= max_;
81 return call_count >= max_;
88 const int max_; member in class:testing::__anon5852::BetweenCardinalityImpl
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)
122 *os << "called between " << min_ << " and " << max_ << " times"; local
    [all...]
gmock-cardinalities.cc 53 max_(max >= min_ ? max : min_) {
74 int ConservativeUpperBound() const override { return max_; }
77 return min_ <= call_count && call_count <= max_;
81 return call_count >= max_;
88 const int max_; member in class:testing::__anon5852::BetweenCardinalityImpl
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)
122 *os << "called between " << min_ << " and " << max_ << " times"; local
    [all...]

Completed in 41 milliseconds