HomeSort by relevance Sort by last modified time
    Searched defs:Between (Results 1 - 6 of 6) 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/googletest/googlemock/src/
gmock-cardinalities.cc 48 // Implements the Between(m, n) cardinality.
106 // Describes the Between(m, n) cardinality in human-friendly text.
122 *os << "called between " << min_ << " and " << max_ << " times";
139 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
142 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
147 // Creates a cardinality that allows between min and max calls.
148 GTEST_API_ Cardinality Between(int min, int max) {
153 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/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/tensorflow/tensorflow/core/lib/io/
table_test.cc 153 // Helper class for tests to unify the interface between
536 static bool Between(uint64 val, uint64 low, uint64 high) {
565 ASSERT_TRUE(Between(c.ApproximateOffsetOf("abc"), 0, 0));
566 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01"), 0, 0));
567 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01a"), 0, 0));
568 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k02"), 0, 0));
569 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k03"), 10, 500));
570 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04"), 10000, 11000));
571 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04a"), 210000, 211000));
572 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k05"), 210000, 211000))
    [all...]
  /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); }
  /external/v8/src/heap/
factory.cc     [all...]

Completed in 217 milliseconds