HomeSort by relevance Sort by last modified time
    Searched refs:max_ (Results 1 - 10 of 10) 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::__anon5231::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/qemu/android/utils/
vector.h 21 unsigned max_##name \
30 (obj)->max_##name = 0; \
37 (obj)->max_##name = (count); \
44 (obj)->max_##name = 0; \
58 (obj)->max_##name = (newMax); \
64 if (_newCount > (obj)->max_##name) \
67 &(obj)->max_##name, _newCount ); \
  /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.
327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; }
548 int max_; member in struct:re2::Regexp::__anon14708::__anon14709
simplify.cc 277 Regexp* nre = SimplifyRepeat(newsub, re->min_, re->max_,
regexp.cc 279 re->max_ = max;
parse.cc 486 re->max_ = max;
    [all...]
  /external/freetype/src/cff/
cffparse.c 783 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \
789 clazz[i].array_max = max_; \
832 #define CFF_FIELD_DELTA( code_, name_, max_, id_ ) \
838 clazz[i].array_max = max_; \
  /external/ceres-solver/internal/ceres/
gmock_gtest_all.cc     [all...]
  /external/v8/src/
ast.h 2436 int max_; member in class:v8::internal::RegExpQuantifier
    [all...]
  /external/chromium-trace/
script.js 25 base.exportTo("base",function(){function d(){this.isEmpty_=!0;this.max_=this.min_=void 0}d.prototype={__proto__:Object.prototype,reset:function(){this.isEmpty_=!0;this.max_=this.min_=void 0},get isEmpty(){return this.isEmpty_},addRange:function(c){c.isEmpty||(this.addValue(c.min),this.addValue(c.max))},addValue:function(c){this.isEmpty_?(this.min_=this.max_=c,this.isEmpty_=!1):(this.max_=Math.max(this.max_,c),this.min_=Math.min(this.min_,c))},get min(){return this.isEmpty_?void 0:this.min_},get max(){return this.isEmpty_?
26 void 0:this.max_}};return{Range:d}});"use strict";base.require("range");base.require("event_target");
    [all...]

Completed in 298 milliseconds