Searched refs:nextFireInterval (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DV8GCForContextDispose.cpp53 double nextFireInterval = m_pseudoIdleTimer.nextFireInterval(); local
54 if (nextFireInterval > maximumFireInterval) {
/external/webkit/Source/WebCore/page/
H A DPluginHalter.cpp114 double nextFireInterval = static_cast<double>(m_pluginAllowedRunTime) - (currentTime() - m_oldestStartTime); local
115 m_timer.startOneShot(nextFireInterval < 0 ? 0 : nextFireInterval);
H A DSuspendableTimer.cpp67 m_nextFireInterval = nextFireInterval();
/external/webkit/Source/WebCore/platform/
H A DTimer.h44 void start(double nextFireInterval, double repeatInterval);
52 double nextFireInterval() const;
H A DRunLoopTimer.h48 void start(double nextFireInterval, double repeatInterval);
H A DTimer.cpp179 void TimerBase::start(double nextFireInterval, double repeatInterval)
184 setNextFireTime(currentTime() + nextFireInterval);
199 double TimerBase::nextFireInterval() const
/external/webkit/Source/WebCore/platform/cf/
H A DRunLoopTimerCF.cpp48 void RunLoopTimerBase::start(double nextFireInterval, double repeatInterval) argument
53 m_timer.adoptCF(CFRunLoopTimerCreate(0, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context));
/external/webkit/Source/WebKit2/Platform/qt/
H A DRunLoopQt.cpp118 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat) argument
121 int millis = static_cast<int>(nextFireInterval * 1000);
/external/webkit/Source/WebKit2/Platform/mac/
H A DRunLoopMac.mm123 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat)
129 CFTimeInterval repeatInterval = repeat ? nextFireInterval : 0;
130 m_timer = CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context);
/external/webkit/Source/WebKit2/Platform/win/
H A DRunLoopWin.cpp201 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat) argument
205 ::SetTimer(m_runLoop->m_runLoopMessageWindow, m_ID, nextFireInterval * 1000, 0);
/external/webkit/Source/WebCore/wml/
H A DWMLTimerElement.cpp148 int interval = static_cast<int>(m_timer.nextFireInterval()) * 10;
/external/webkit/Source/WebKit2/Platform/
H A DRunLoop.h86 void start(double nextFireInterval, bool repeat);
/external/webkit/Source/WebCore/loader/
H A DNavigationScheduler.cpp117 frame->loader()->clientRedirected(KURL(ParsedURLString, m_url), delay(), currentTime() + timer->nextFireInterval(), lockBackForwardList());
227 frame->loader()->clientRedirected(m_submission->requestURL(), delay(), currentTime() + timer->nextFireInterval(), lockBackForwardList());

Completed in 217 milliseconds