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

  /external/gmock/src/
gmock-cardinalities.cc 49 // Implements the Between(m, n) cardinality.
107 // Describes the Between(m, n) cardinality in human-friendly text.
123 *os << "called between " << min_ << " and " << max_ << " times";
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
143 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
148 // Creates a cardinality that allows between min and max calls.
149 GTEST_API_ Cardinality Between(int min, int max) {
154 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
  /external/google-breakpad/src/testing/src/
gmock-cardinalities.cc 49 // Implements the Between(m, n) cardinality.
107 // Describes the Between(m, n) cardinality in human-friendly text.
123 *os << "called between " << min_ << " and " << max_ << " times";
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
143 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
148 // Creates a cardinality that allows between min and max calls.
149 GTEST_API_ Cardinality Between(int min, int max) {
154 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
  /external/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;
582 .Times(Between(1, 2))
672 .Times(Between(2, 3))
681 "Expected to be called between 2 and 3 times, "
    [all...]
  /external/google-breakpad/src/testing/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;
582 .Times(Between(1, 2))
672 .Times(Between(2, 3))
681 "Expected to be called between 2 and 3 times, "
    [all...]
  /external/v8/src/
dateparser.h 37 static inline bool Between(int x, int lo, int hi) {
314 static bool IsMinute(int x) { return Between(x, 0, 59); }
315 static bool IsHour(int x) { return Between(x, 0, 23); }
316 static bool IsSecond(int x) { return Between(x, 0, 59); }
319 static bool IsHour12(int x) { return Between(x, 0, 12); }
320 static bool IsMillisecond(int x) { return Between(x, 0, 999); }
343 static bool IsMonth(int x) { return Between(x, 1, 12); }
344 static bool IsDay(int x) { return Between(x, 1, 31); }
dateparser.cc 53 if (Between(year, 0, 49)) year += 2000;
54 else if (Between(year, 50, 99)) year += 1900;
dateparser-inl.h 274 !Between(scanner->Peek().number(), 0, 24)) {
factory.cc 462 static inline bool Between(uint32_t character, uint32_t from, uint32_t to) {
473 if (!Between(c1, '0', '9') || !Between(c2, '0', '9')) {
    [all...]
  /external/gmock/include/gmock/
gmock-cardinalities.h 134 // Creates a cardinality that allows between min and max calls.
135 GTEST_API_ Cardinality Between(int min, int max);
  /external/google-breakpad/src/testing/include/gmock/
gmock-cardinalities.h 134 // Creates a cardinality that allows between min and max calls.
135 GTEST_API_ Cardinality Between(int min, int max);
  /external/libchrome/base/trace_event/
memory_dump_manager_unittest.cc 32 using testing::Between;
500 .Times(Between(2, 3))
536 .Times(Between(1, 2))
692 // dumps in memory-infra, handling gracefully the transition between the legacy
    [all...]
  /external/llvm/test/MC/ARM/
simple-fp-encoding.s 207 @ Between two single precision registers and two core registers
217 @ Between one double precision register and two core registers
355 @ VCVT (between floating-point and fixed-point)
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
tokenizer.js     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds2/
layer1.py     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/
parse5.js     [all...]

Completed in 343 milliseconds