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

  /external/v8/src/
dateparser.h 58 static inline bool Between(int x, int lo, int hi) {
205 static bool IsMinute(int x) { return Between(x, 0, 59); }
207 static bool IsHour(int x) { return Between(x, 0, 23); }
208 static bool IsHour12(int x) { return Between(x, 0, 12); }
209 static bool IsSecond(int x) { return Between(x, 0, 59); }
227 static bool IsMonth(int x) { return Between(x, 1, 12); }
228 static bool IsDay(int x) { return Between(x, 1, 31); }
dateparser.cc 70 if (Between(year, 0, 49)) year += 2000;
71 else if (Between(year, 50, 99)) year += 1900;
heap.cc 779 // copied and unswept objects lie between a 'front' mark and the
786 // objects lie between a 'front' mark and a 'rear' mark that is
936 // separately and all the ones in between.
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 729 milliseconds