Home
last modified time | relevance | path

Searched refs:max_time (Results 1 – 11 of 11) sorted by relevance

/external/chromium/base/synchronization/
Dwaitable_event_win.cc57 bool WaitableEvent::TimedWait(const TimeDelta& max_time) { in TimedWait() argument
58 DCHECK(max_time >= TimeDelta::FromMicroseconds(0)); in TimedWait()
62 double timeout = ceil(max_time.InMillisecondsF()); in TimedWait()
Dcondition_variable_posix.cc42 void ConditionVariable::TimedWait(const TimeDelta& max_time) { in TimedWait() argument
43 int64 usecs = max_time.InMicroseconds(); in TimedWait()
Dwaitable_event_posix.cc156 bool WaitableEvent::TimedWait(const TimeDelta& max_time) { in TimedWait() argument
157 const Time end_time(Time::Now() + max_time); in TimedWait()
158 const bool finite_time = max_time.ToInternalValue() >= 0; in TimedWait()
Dcondition_variable_win.cc52 void ConditionVariable::TimedWait(const TimeDelta& max_time) { in TimedWait() argument
65 WaitForSingleObject(handle, static_cast<DWORD>(max_time.InMilliseconds())); in TimedWait()
Dcondition_variable.h95 void TimedWait(const TimeDelta& max_time);
Dwaitable_event.h83 bool TimedWait(const TimeDelta& max_time);
/external/chromium/chrome/browser/chromeos/cros/
Dcros_library_loader.cc22 static const base::TimeDelta max_time = base::TimeDelta::FromSeconds(1); in addLibcrosTimeHistogram() local
28 max_time, in addLibcrosTimeHistogram()
/external/webkit/Tools/TestResultServer/model/
Djsonresults.py284 max_time = max(
290 (is_all_pass and max_time < JSON_RESULTS_MIN_TIME)):
/external/icu4c/tools/tzcode/
Dzic.c201 static zic_t max_time; variable
828 max_time = -(min_time + 1); in setboundaries()
1234 z.z_untiltime < max_time &&
1236 zones[nzones - 1].z_untiltime < max_time &&
1321 if (dayoff > max_time / SECSPERDAY) {
2320 jtime == max_time)
2761 if (t1 == max_time && t2 > 0)
2762 return max_time;
2790 return max_time;
2855 if (dayoff > max_time / SECSPERDAY)
[all …]
/external/sonivox/jet_tools/JetCreator/
Deas.py490 def Play (self, max_time=None): argument
495 if max_time is not None:
496 max_time += self.eas.GetRenderTime()
499 if max_time is not None:
500 if self.eas.GetRenderTime() >= max_time:
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
Djson_results_generator.py567 max_time = max([time[1] for time in test[self.TIMES]])
572 if is_all_no_data or (is_all_pass and max_time <= self.MIN_TIME):