Searched defs:Between (Results 1 - 3 of 3) sorted by relevance

/external/chromium/testing/gmock/src/
H A Dgmock-cardinalities.cc49 // Implements the Between(m, n) cardinality.
106 // Describes the Between(m, n) cardinality in human-friendly text.
139 Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
142 Cardinality AtMost(int n) { return Between(0, n); }
148 Cardinality Between(int min, int max) { function in namespace:testing
153 Cardinality Exactly(int n) { return Between(n, n); }
/external/v8/src/
H A Ddateparser.h59 static inline bool Between(int x, int lo, int hi) { function in class:v8::internal::DateParser
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); }
H A Dheap.cc2958 static inline bool Between(uint32_t character, uint32_t from, uint32_t to) { function in namespace:v8::internal
2971 if ((!Between(c1, '0', '9') || !Between(c2, '0', '9')) &&

Completed in 99 milliseconds