Searched refs:Between (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/v8/src/
H A Ddateparser.h36 static inline bool Between(int x, int lo, int hi) { function in class:v8::internal::DateParser
329 static bool IsMinute(int x) { return Between(x, 0, 59); }
330 static bool IsHour(int x) { return Between(x, 0, 23); }
331 static bool IsSecond(int x) { return Between(x, 0, 59); }
334 static bool IsHour12(int x) { return Between(x, 0, 12); }
335 static bool IsMillisecond(int x) { return Between(x, 0, 999); }
358 static bool IsMonth(int x) { return Between(x, 1, 12); }
359 static bool IsDay(int x) { return Between(x, 1, 31); }
H A Ddateparser.cc52 if (Between(year, 0, 49)) year += 2000;
53 else if (Between(year, 50, 99)) year += 1900;
H A Ddateparser-inl.h239 !Between(scanner->Peek().number(), 0, 24)) {
H A Dfactory.cc417 static inline bool Between(uint32_t character, uint32_t from, uint32_t to) { function in namespace:v8::internal
428 if (!Between(c1, '0', '9') || !Between(c2, '0', '9')) {
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dtable_test.cc787 static bool Between(uint64_t val, uint64_t low, uint64_t high) { function in namespace:leveldb
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));
824 ASSERT_TRUE(Between(
[all...]
/external/chromium_org/sync/internal_api/public/base/
H A Dunique_position.h74 static UniquePosition Between(const UniquePosition& before,
H A Dunique_position_unittest.cc266 UniquePosition::Between(predecessor, successor, suffix);
349 UniquePosition::Between(left_pos, right_pos, suffix);
371 UniquePosition::Between(left_pos, right_pos, suffix);
H A Dunique_position.cc129 UniquePosition UniquePosition::Between( function in class:syncer::UniquePosition
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_test.cc1048 static bool Between(uint64_t val, uint64_t low, uint64_t high) { function in namespace:leveldb
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(Siz
[all...]
/external/chromium_org/content/browser/
H A Dstartup_task_runner_unittest.cc236 .Times(testing::Between(2, 3))
283 .Times(testing::Between(1, 2))
/external/chromium_org/ui/base/resource/
H A Dresource_bundle_unittest.cc30 using ::testing::Between;
248 .Times(Between(0, 1))
252 .Times(Between(0, 1))
/external/chromium_org/media/audio/win/
H A Daudio_low_latency_output_win_unittest.cc32 using ::testing::Between;
/external/llvm/test/MC/ARM/
H A Dsimple-fp-encoding.s207 @ Between two single precision registers and two core registers
217 @ Between one double precision register and two core registers
/external/chromium_org/sync/syncable/
H A Ddirectory.cc1451 UniquePosition pos = UniquePosition::Between(

Completed in 433 milliseconds