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

/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/googletest/googlemock/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/testing/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/tensorflow/tensorflow/core/lib/io/
H A Dtable_test.cc525 static bool Between(uint64 val, uint64 low, uint64 high) { function in namespace:tensorflow::table
554 ASSERT_TRUE(Between(c.ApproximateOffsetOf("abc"), 0, 0));
555 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01"), 0, 0));
556 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01a"), 0, 0));
557 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k02"), 0, 0));
558 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k03"), 10, 500));
559 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04"), 10000, 11000));
560 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04a"), 210000, 211000));
561 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k05"), 210000, 211000));
562 ASSERT_TRUE(Between(
[all...]
/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.cc584 static inline bool Between(uint32_t character, uint32_t from, uint32_t to) { function in namespace:v8::internal
595 if (!Between(c1, '0', '9') || !Between(c2, '0', '9')) {

Completed in 229 milliseconds