OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:interval_offset
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/time/
time.cc
305
// |
interval_offset
| is the offset from |this| to the next multiple of
307
TimeDelta
interval_offset
= (tick_phase - *this) % tick_interval;
local
311
if (!
interval_offset
.is_zero() && tick_phase < *this)
312
interval_offset
+= tick_interval;
313
return *this +
interval_offset
;
/external/libweave/third_party/chromium/base/time/
time.cc
273
// |
interval_offset
| is the offset from |this| to the next multiple of
275
TimeDelta
interval_offset
= (tick_phase - *this) % tick_interval;
local
279
if (!
interval_offset
.is_zero() && tick_phase < *this)
280
interval_offset
+= tick_interval;
281
return *this +
interval_offset
;
Completed in 3135 milliseconds