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

  /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/v8/src/
dateparser.h 36 static inline bool Between(int x, int lo, int hi) {
329 static bool IsMinute(int x) { return Between(x, 0, 59); }
330 static bool IsHour(int x) { return Between(x, 0, 23); }
331 static bool IsSecond(int x) { return Between(x, 0, 59); }
334 static bool IsHour12(int x) { return Between(x, 0, 12); }
335 static bool IsMillisecond(int x) { return Between(x, 0, 999); }
358 static bool IsMonth(int x) { return Between(x, 1, 12); }
359 static bool IsDay(int x) { return Between(x, 1, 31); }
factory.cc 417 static inline bool Between(uint32_t character, uint32_t from, uint32_t to) {
428 if (!Between(c1, '0', '9') || !Between(c2, '0', '9')) {
    [all...]

Completed in 1952 milliseconds