HomeSort by relevance Sort by last modified time
    Searched refs:Between (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium/testing/gmock/src/
gmock-cardinalities.cc 49 // 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 Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
142 Cardinality AtMost(int n) { return Between(0, n); }
147 // Creates a cardinality that allows between min and max calls.
148 Cardinality Between(int min, int max) {
153 Cardinality Exactly(int n) { return Between(n, n); }
  /external/chromium/testing/gmock/test/
gmock-cardinalities_test.cc 46 using testing::Between;
243 // Tests Between(m, n).
247 Between(-1, 2);
253 Between(1, -2);
259 Between(2, 1);
265 const Cardinality c = Between(0, 0);
280 const Cardinality c = Between(0, 2);
298 const Cardinality c = Between(3, 3);
316 const Cardinality c = Between(3, 5);
332 EXPECT_PRED_FORMAT2(IsSubstring, "called between 3 and 5 times"
    [all...]
gmock-spec-builders_test.cc 69 using testing::Between;
571 .Times(Between(1, 2))
661 .Times(Between(2, 3))
670 "Expected to be called between 2 and 3 times, "
    [all...]
  /external/chromium_org/v8/src/
dateparser.h 59 static inline bool Between(int x, int lo, int hi) {
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); }
dateparser.cc 75 if (Between(year, 0, 49)) year += 2000;
76 else if (Between(year, 50, 99)) year += 1900;
dateparser-inl.h 262 !Between(scanner->Peek().number(), 0, 24)) {
  /external/v8/src/
dateparser.h 59 static inline bool Between(int x, int lo, int hi) {
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); }
dateparser.cc 75 if (Between(year, 0, 49)) year += 2000;
76 else if (Between(year, 50, 99)) year += 1900;
dateparser-inl.h 258 !Between(scanner->Peek().number(), 0, 24)) {
  /external/chromium_org/third_party/leveldatabase/src/table/
table_test.cc 139 // Helper class for tests to unify the interface between
787 static bool Between(uint64_t val, uint64_t low, uint64_t high) {
816 ASSERT_TRUE(Between(c.ApproximateOffsetOf("abc"), 0, 0));
817 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01"), 0, 0));
818 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01a"), 0, 0));
819 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k02"), 0, 0));
820 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k03"), 0, 0));
821 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04"), 10000, 11000));
822 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04a"), 210000, 211000));
823 ASSERT_TRUE(Between(c.ApproximateOffsetOf("k05"), 210000, 211000))
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-cardinalities.h 133 // Creates a cardinality that allows between min and max calls.
134 Cardinality Between(int min, int max);
  /external/chromium_org/chrome_frame/test/
mock_ie_event_sink_test.cc 98 ExpectNavigationCardinality(url, Exactly(1), testing::Between(1, 2));
109 testing::Between(1, 2));
121 testing::Between(1, 2));
129 testing::Between(1, 2));
infobar_unittests.cc 197 .Times(testing::Between(0, 1))
201 .Times(testing::Between(0, 1))
205 .Times(testing::Between(0, 1));
209 .Times(testing::Between(0, 1));
automation_client_mock.cc 225 .Times(testing::Between(1, 2))
navigation_test.cc 424 // between two pages.
549 .Times(testing::Between(1, 2))
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
unique_position.h 64 // Returns positions compare smaller than, greater than, or between the input
70 static UniquePosition Between(const UniquePosition& before,
unique_position_unittest.cc 266 UniquePosition::Between(predecessor, successor, suffix);
349 UniquePosition::Between(left_pos, right_pos, suffix);
371 UniquePosition::Between(left_pos, right_pos, suffix);
unique_position.cc 120 UniquePosition UniquePosition::Between(
395 // A repeated character block is encoded into eight bytes and represents between
401 // count'. At compression time, the algorithm will choose between the two
  /external/chromium_org/third_party/leveldatabase/src/db/
db_test.cc 1048 static bool Between(uint64_t val, uint64_t low, uint64_t high) {
1066 ASSERT_TRUE(Between(Size("", "xyz"), 0, 0));
1068 ASSERT_TRUE(Between(Size("", "xyz"), 0, 0));
1081 ASSERT_TRUE(Between(Size("", Key(50)), 0, 0));
1089 ASSERT_TRUE(Between(Size("", Key(i)), S1*i, S2*i));
1090 ASSERT_TRUE(Between(Size("", Key(i)+".suffix"), S1*(i+1), S2*(i+1)));
1091 ASSERT_TRUE(Between(Size(Key(i), Key(i+10)), S1*10, S2*10));
1093 ASSERT_TRUE(Between(Size("", Key(50)), S1*50, S2*50));
1094 ASSERT_TRUE(Between(Size("", Key(50)+".suffix"), S1*50, S2*50));
1130 ASSERT_TRUE(Between(Size("", Key(0)), 0, 0))
    [all...]
  /external/chromium_org/content/browser/
startup_task_runner_unittest.cc 236 .Times(testing::Between(2, 3))
283 .Times(testing::Between(1, 2))
  /external/chromium_org/media/audio/win/
audio_unified_win_unittest.cc 24 using ::testing::Between;
59 // play-through. It also creates a text file that contains times between two
99 // Store time between this callback and the previous callback.
113 // A channel mixer is required for converting audio between two different
306 .Times(Between(0, 1))
audio_low_latency_output_win_unittest.cc 31 using ::testing::Between;
85 // Creates an array that will store delta times between callbacks.
116 // Store time difference between two successive callbacks in an array.
  /external/chromium_org/ui/base/resource/
resource_bundle_unittest.cc 27 using ::testing::Between;
245 .Times(Between(0, 1))
249 .Times(Between(0, 1))
  /external/llvm/test/MC/ARM/
simple-fp-encoding.s 207 @ Between two single precision registers and two core registers
217 @ Between one double precision register and two core registers
355 @ VCVT (between floating-point and fixed-point)
  /external/chromium_org/sync/syncable/
directory.cc     [all...]

Completed in 870 milliseconds

1 2