HomeSort by relevance Sort by last modified time
    Searched defs:max_ (Results 1 - 3 of 3) sorted by null

  /external/chromium/testing/gmock/src/
gmock-cardinalities.cc 54 max_(max >= min_ ? max : min_) {
75 virtual int ConservativeUpperBound() const { return max_; }
78 return min_ <= call_count && call_count <= max_ ;
82 return call_count >= max_;
88 const int max_; member in class:testing::__anon4681::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...]
  /external/regex-re2/re2/
regexp.h 120 // Matches sub_[0] at least min_ times, at most max_ times.
121 // max_ == -1 means no upper limit.
326 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; }
547 int max_; member in struct:re2::Regexp::__anon13448::__anon13449
  /external/v8/src/
ast.h 2436 int max_; member in class:v8::internal::RegExpQuantifier
    [all...]

Completed in 42 milliseconds