OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Between
(Results
1 - 4
of
4
) 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/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); }
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
...]
Completed in 1092 milliseconds