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

  /external/chromium/chrome/browser/chromeos/cros/
cros_library_loader.cc 22 static const base::TimeDelta max_time = base::TimeDelta::FromSeconds(1); local
28 max_time,
  /external/chromium/base/synchronization/
waitable_event_win.cc 57 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
58 DCHECK(max_time >= TimeDelta::FromMicroseconds(0));
62 double timeout = ceil(max_time.InMillisecondsF());
condition_variable_posix.cc 42 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
43 int64 usecs = max_time.InMicroseconds();
condition_variable.h 95 void TimedWait(const TimeDelta& max_time);
waitable_event.h 80 // Wait up until max_time has passed for the event to be signaled. Returns
82 // does not necessarily mean that max_time was exceeded.
83 bool TimedWait(const TimeDelta& max_time);
condition_variable_win.cc 52 void ConditionVariable::TimedWait(const TimeDelta& max_time) {
65 WaitForSingleObject(handle, static_cast<DWORD>(max_time.InMilliseconds()));
314 WaitForSingleObject(waiting_event, max_time.InMilliseconds());
waitable_event_posix.cc 156 bool WaitableEvent::TimedWait(const TimeDelta& max_time) {
157 const Time end_time(Time::Now() + max_time);
158 const bool finite_time = max_time.ToInternalValue() >= 0;
  /external/webkit/Tools/TestResultServer/model/
jsonresults.py 284 max_time = max(
290 (is_all_pass and max_time < JSON_RESULTS_MIN_TIME)):
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_results_generator.py 567 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):
  /external/icu4c/tools/tzcode/
zic.c 201 static zic_t max_time; variable
828 max_time = -(min_time + 1);
1234 z.z_untiltime < max_time &&
1236 zones[nzones - 1].z_untiltime < max_time &&
1321 if (dayoff > max_time / SECSPERDAY) {
    [all...]
  /external/sonivox/jet_tools/JetCreator/
eas.py 490 def Play (self, max_time=None):
491 """Plays the file to the end or max_time."""
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:
    [all...]

Completed in 239 milliseconds