Searched refs:nextFireInterval (Results 1 – 14 of 14) sorted by relevance
/external/webkit/Source/WebCore/bindings/v8/ |
D | V8GCForContextDispose.cpp | 53 double nextFireInterval = m_pseudoIdleTimer.nextFireInterval(); in notifyIdleSooner() local 54 if (nextFireInterval > maximumFireInterval) { in notifyIdleSooner()
|
/external/webkit/Source/WebCore/page/ |
D | PluginHalter.cpp | 114 …double nextFireInterval = static_cast<double>(m_pluginAllowedRunTime) - (currentTime() - m_oldestS… in startTimerIfNecessary() local 115 m_timer.startOneShot(nextFireInterval < 0 ? 0 : nextFireInterval); in startTimerIfNecessary()
|
D | SuspendableTimer.cpp | 67 m_nextFireInterval = nextFireInterval(); in suspend()
|
/external/webkit/Source/WebCore/platform/cf/ |
D | RunLoopTimerCF.cpp | 48 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/ |
D | Timer.h | 44 void start(double nextFireInterval, double repeatInterval); 52 double nextFireInterval() const;
|
D | Timer.cpp | 179 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
|
D | RunLoopTimer.h | 48 void start(double nextFireInterval, double repeatInterval);
|
/external/webkit/Source/WebKit2/Platform/qt/ |
D | RunLoopQt.cpp | 118 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/ |
D | RunLoopMac.mm | 123 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/ |
D | RunLoopWin.cpp | 201 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/ |
D | WMLTimerElement.cpp | 148 int interval = static_cast<int>(m_timer.nextFireInterval()) * 10; in storeIntervalToPageState()
|
/external/webkit/Source/WebCore/loader/ |
D | NavigationScheduler.cpp | 117 …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/ |
D | RunLoop.h | 86 void start(double nextFireInterval, bool repeat);
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-05-10 | 18857 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.
|