HomeSort by relevance Sort by last modified time
    Searched refs:Between (Results 1 - 10 of 10) 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/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/v8/src/
dateparser.h 59 static inline bool Between(int x, int lo, int hi) {
352 static bool IsMinute(int x) { return Between(x, 0, 59); }
353 static bool IsHour(int x) { return Between(x, 0, 23); }
354 static bool IsSecond(int x) { return Between(x, 0, 59); }
357 static bool IsHour12(int x) { return Between(x, 0, 12); }
358 static bool IsMillisecond(int x) { return Between(x, 0, 999); }
381 static bool IsMonth(int x) { return Between(x, 1, 12); }
382 static bool IsDay(int x) { return Between(x, 1, 31); }
dateparser.cc 75 if (Between(year, 0, 49)) year += 2000;
76 else if (Between(year, 50, 99)) year += 1900;
dateparser-inl.h 258 !Between(scanner->Peek().number(), 0, 24)) {
heap.cc     [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/llvm/test/MC/ARM/
simple-fp-encoding.s 199 @ Between two single precision registers and two core registers
209 @ Between one double precision register and two core registers
333 @ VCVT (between floating-point and fixed-point)
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 2959 milliseconds