HomeSort by relevance Sort by last modified time
    Searched refs:Between (Results 1 - 8 of 8) sorted by null

  /external/chromium/testing/gmock/src/
gmock-cardinalities.cc 49 // Implements the Between(m, n) cardinality.
106 // Describes the Between(m, n) cardinality in human-friendly text.
122 *os << "called between " << min_ << " and " << max_ << " times";
139 Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
142 Cardinality AtMost(int n) { return Between(0, n); }
147 // Creates a cardinality that allows between min and max calls.
148 Cardinality Between(int min, int max) {
153 Cardinality Exactly(int n) { return Between(n, n); }
  /external/v8/src/
dateparser.h 60 static inline bool Between(int x, int lo, int hi) {
229 static bool IsMinute(int x) { return Between(x, 0, 59); }
231 static bool IsHour(int x) { return Between(x, 0, 23); }
232 static bool IsHour12(int x) { return Between(x, 0, 12); }
233 static bool IsSecond(int x) { return Between(x, 0, 59); }
234 static bool IsMillisecond(int x) { return Between(x, 0, 999); }
252 static bool IsMonth(int x) { return Between(x, 1, 12); }
253 static bool IsDay(int x) { return Between(x, 1, 31); }
dateparser.cc 74 if (Between(year, 0, 49)) year += 2000;
75 else if (Between(year, 50, 99)) year += 1900;
heap.cc 980 // copied and unswept objects lie between a 'front' mark and the
987 // objects lie between a 'front' mark and a 'rear' mark that is
    [all...]
  /external/chromium/testing/gmock/test/
gmock-cardinalities_test.cc 46 using testing::Between;
243 // Tests Between(m, n).
247 Between(-1, 2);
253 Between(1, -2);
259 Between(2, 1);
265 const Cardinality c = Between(0, 0);
280 const Cardinality c = Between(0, 2);
298 const Cardinality c = Between(3, 3);
316 const Cardinality c = Between(3, 5);
332 EXPECT_PRED_FORMAT2(IsSubstring, "called between 3 and 5 times"
    [all...]
gmock-spec-builders_test.cc 69 using testing::Between;
571 .Times(Between(1, 2))
661 .Times(Between(2, 3))
670 "Expected to be called between 2 and 3 times, "
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-cardinalities.h 133 // Creates a cardinality that allows between min and max calls.
134 Cardinality Between(int min, int max);
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 323 milliseconds