OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextFireInterval
(Results
1 - 13
of
13
) sorted by null
/external/webkit/Source/WebCore/bindings/v8/
V8GCForContextDispose.cpp
53
double
nextFireInterval
= m_pseudoIdleTimer.
nextFireInterval
();
54
if (
nextFireInterval
> maximumFireInterval) {
/external/webkit/Source/WebCore/page/
PluginHalter.cpp
114
double
nextFireInterval
= static_cast<double>(m_pluginAllowedRunTime) - (currentTime() - m_oldestStartTime);
115
m_timer.startOneShot(
nextFireInterval
< 0 ? 0 :
nextFireInterval
);
SuspendableTimer.cpp
67
m_nextFireInterval =
nextFireInterval
();
/external/webkit/Source/WebCore/platform/
Timer.h
44
void start(double
nextFireInterval
, double repeatInterval);
52
double
nextFireInterval
() const;
RunLoopTimer.h
48
void start(double
nextFireInterval
, double repeatInterval);
Timer.cpp
179
void TimerBase::start(double
nextFireInterval
, double repeatInterval)
184
setNextFireTime(currentTime() +
nextFireInterval
);
199
double TimerBase::
nextFireInterval
() const
/external/webkit/Source/WebCore/platform/cf/
RunLoopTimerCF.cpp
48
void RunLoopTimerBase::start(double
nextFireInterval
, double repeatInterval)
53
m_timer.adoptCF(CFRunLoopTimerCreate(0, CFAbsoluteTimeGetCurrent() +
nextFireInterval
, repeatInterval, 0, 0, timerFired, &context));
/external/webkit/Source/WebKit2/Platform/qt/
RunLoopQt.cpp
118
void RunLoop::TimerBase::start(double
nextFireInterval
, bool repeat)
121
int millis = static_cast<int>(
nextFireInterval
* 1000);
/external/webkit/Source/WebKit2/Platform/mac/
RunLoopMac.mm
123
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/
RunLoopWin.cpp
201
void RunLoop::TimerBase::start(double
nextFireInterval
, bool repeat)
205
::SetTimer(m_runLoop->m_runLoopMessageWindow, m_ID,
nextFireInterval
* 1000, 0);
/external/webkit/Source/WebCore/wml/
WMLTimerElement.cpp
148
int interval = static_cast<int>(m_timer.
nextFireInterval
()) * 10;
/external/webkit/Source/WebKit2/Platform/
RunLoop.h
86
void start(double
nextFireInterval
, bool repeat);
/external/webkit/Source/WebCore/loader/
NavigationScheduler.cpp
117
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 208 milliseconds