Home
last modified time | relevance | path

Searched refs:timeoutId (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/page/
DDOMTimer.cpp48 static int timeoutId() in timeoutId() function
67 , m_timeoutId(timeoutId()) in DOMTimer()
100 void DOMTimer::removeById(ScriptExecutionContext* context, int timeoutId) in removeById() argument
105 if (timeoutId <= 0) in removeById()
108 InspectorInstrumentation::didRemoveTimer(context, timeoutId); in removeById()
110 delete context->findTimeout(timeoutId); in removeById()
DDOMTimer.h46 static void removeById(ScriptExecutionContext*, int timeoutId);
DDOMWindow.h246 void clearTimeout(int timeoutId);
248 void clearInterval(int timeoutId);
DDOMWindow.cpp1493 void DOMWindow::clearTimeout(int timeoutId) in clearTimeout() argument
1498 DOMTimer::removeById(context, timeoutId); in clearTimeout()
1511 void DOMWindow::clearInterval(int timeoutId) in clearInterval() argument
1516 DOMTimer::removeById(context, timeoutId); in clearInterval()
/external/webkit/Source/WebCore/dom/
DScriptExecutionContext.cpp363 void ScriptExecutionContext::addTimeout(int timeoutId, DOMTimer* timer) in addTimeout() argument
365 ASSERT(!m_timeouts.contains(timeoutId)); in addTimeout()
366 m_timeouts.set(timeoutId, timer); in addTimeout()
369 void ScriptExecutionContext::removeTimeout(int timeoutId) in removeTimeout() argument
371 m_timeouts.remove(timeoutId); in removeTimeout()
374 DOMTimer* ScriptExecutionContext::findTimeout(int timeoutId) in findTimeout() argument
376 return m_timeouts.get(timeoutId); in findTimeout()
DScriptExecutionContext.h140 void addTimeout(int timeoutId, DOMTimer*);
141 void removeTimeout(int timeoutId);
142 DOMTimer* findTimeout(int timeoutId);
/external/webkit/Source/WebCore/workers/
DWorkerContext.cpp217 void WorkerContext::clearTimeout(int timeoutId) in clearTimeout() argument
219 DOMTimer::removeById(scriptExecutionContext(), timeoutId); in clearTimeout()
227 void WorkerContext::clearInterval(int timeoutId) in clearInterval() argument
229 DOMTimer::removeById(scriptExecutionContext(), timeoutId); in clearInterval()
DWorkerContext.h102 void clearTimeout(int timeoutId);
104 void clearInterval(int timeoutId);
/external/webkit/Source/WebCore/
DChangeLog45461 (WebCore::timeoutId): Create a helper function so that m_timeoutId can
DChangeLog-2009-06-1666834 (WebCore::DOMTimer::timeoutId):