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

/external/gmock/src/
H A Dgmock-cardinalities.cc49 // Implements the Between(m, n) cardinality.
107 // Describes the Between(m, n) cardinality in human-friendly text.
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
143 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
149 GTEST_API_ Cardinality Between(int min, int max) { function in namespace:testing
154 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
/external/google-breakpad/src/testing/src/
H A Dgmock-cardinalities.cc49 // Implements the Between(m, n) cardinality.
107 // Describes the Between(m, n) cardinality in human-friendly text.
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
143 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
149 GTEST_API_ Cardinality Between(int min, int max) { function in namespace:testing
154 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
/external/v8/src/
H A Ddateparser.h37 static inline bool Between(int x, int lo, int hi) { function in class:v8::internal::DateParser
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); }
H A Dfactory.cc462 static inline bool Between(uint32_t character, uint32_t from, uint32_t to) { function in namespace:v8::internal
473 if (!Between(c1, '0', '9') || !Between(c2, '0', '9')) {

Completed in 185 milliseconds