Searched refs:timeoutId (Results 1 – 10 of 10) sorted by relevance
/external/webkit/Source/WebCore/page/ |
D | DOMTimer.cpp | 48 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()
|
D | DOMTimer.h | 46 static void removeById(ScriptExecutionContext*, int timeoutId);
|
D | DOMWindow.h | 246 void clearTimeout(int timeoutId); 248 void clearInterval(int timeoutId);
|
D | DOMWindow.cpp | 1493 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/ |
D | ScriptExecutionContext.cpp | 363 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()
|
D | ScriptExecutionContext.h | 140 void addTimeout(int timeoutId, DOMTimer*); 141 void removeTimeout(int timeoutId); 142 DOMTimer* findTimeout(int timeoutId);
|
/external/webkit/Source/WebCore/workers/ |
D | WorkerContext.cpp | 217 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()
|
D | WorkerContext.h | 102 void clearTimeout(int timeoutId); 104 void clearInterval(int timeoutId);
|
/external/webkit/Source/WebCore/ |
D | ChangeLog | 45461 (WebCore::timeoutId): Create a helper function so that m_timeoutId can
|
D | ChangeLog-2009-06-16 | 66834 (WebCore::DOMTimer::timeoutId):
|