Home | History | Annotate | Download | only in base

Lines Matching refs:later

51 bool TimeIsBetween(uint32 earlier, uint32 middle, uint32 later);  // Inclusive
52 bool TimeIsLaterOrEqual(uint32 earlier, uint32 later); // Inclusive
53 bool TimeIsLater(uint32 earlier, uint32 later); // Exclusive
55 // Returns the later of two timestamps.
65 // Number of milliseconds that would elapse between 'earlier' and 'later'
66 // timestamps. The value is negative if 'later' occurs before 'earlier'.
67 int32 TimeDiff(uint32 later, uint32 earlier);
74 // The number of milliseconds that will elapse between now and 'later'.
75 inline int32 TimeUntil(uint32 later) {
76 return TimeDiff(later, Time());