Home
last modified time | relevance | path

Searched refs:nextFireInterval (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
DV8GCForContextDispose.cpp53 double nextFireInterval = m_pseudoIdleTimer.nextFireInterval(); in notifyIdleSooner() local
54 if (nextFireInterval > maximumFireInterval) { in notifyIdleSooner()
/external/webkit/Source/WebCore/page/
DPluginHalter.cpp114 …double nextFireInterval = static_cast<double>(m_pluginAllowedRunTime) - (currentTime() - m_oldestS… in startTimerIfNecessary() local
115 m_timer.startOneShot(nextFireInterval < 0 ? 0 : nextFireInterval); in startTimerIfNecessary()
DSuspendableTimer.cpp67 m_nextFireInterval = nextFireInterval(); in suspend()
/external/webkit/Source/WebCore/platform/cf/
DRunLoopTimerCF.cpp48 void RunLoopTimerBase::start(double nextFireInterval, double repeatInterval) in start() argument
53 …m_timer.adoptCF(CFRunLoopTimerCreate(0, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInter… in start()
/external/webkit/Source/WebCore/platform/
DTimer.h44 void start(double nextFireInterval, double repeatInterval);
52 double nextFireInterval() const;
DTimer.cpp179 void TimerBase::start(double nextFireInterval, double repeatInterval) in start() argument
184 setNextFireTime(currentTime() + nextFireInterval); in start()
199 double TimerBase::nextFireInterval() const in nextFireInterval() function in WebCore::TimerBase
DRunLoopTimer.h48 void start(double nextFireInterval, double repeatInterval);
/external/webkit/Source/WebKit2/Platform/qt/
DRunLoopQt.cpp118 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat) in start() argument
121 int millis = static_cast<int>(nextFireInterval * 1000); in start()
/external/webkit/Source/WebKit2/Platform/mac/
DRunLoopMac.mm123 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat)
129 CFTimeInterval repeatInterval = repeat ? nextFireInterval : 0;
130 …unLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterv…
/external/webkit/Source/WebKit2/Platform/win/
DRunLoopWin.cpp201 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat) in start() argument
205 ::SetTimer(m_runLoop->m_runLoopMessageWindow, m_ID, nextFireInterval * 1000, 0); in start()
/external/webkit/Source/WebCore/wml/
DWMLTimerElement.cpp148 int interval = static_cast<int>(m_timer.nextFireInterval()) * 10; in storeIntervalToPageState()
/external/webkit/Source/WebCore/loader/
DNavigationScheduler.cpp117 …ected(KURL(ParsedURLString, m_url), delay(), currentTime() + timer->nextFireInterval(), lockBackFo… in didStartTimer()
227 …irected(m_submission->requestURL(), delay(), currentTime() + timer->nextFireInterval(), lockBackFo… in didStartTimer()
/external/webkit/Source/WebKit2/Platform/
DRunLoop.h86 void start(double nextFireInterval, bool repeat);
/external/webkit/Source/WebCore/
DChangeLog-2006-05-1018857 in WebCore::TimerBase::nextFireInterval() const + 100 (Timer.cpp:188)
24492 (WebCore::TimerBase::nextFireInterval):
25784 * platform/Timer.h: Change to use nextFireInterval rather than nextFireTime.
25797 (WebCore::TimerBase::nextFireInterval): Added.