HomeSort by relevance Sort by last modified time
    Searched refs:timeoutId (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/page/
DOMTimer.cpp 48 static int timeoutId()
67 , m_timeoutId(timeoutId())
100 void DOMTimer::removeById(ScriptExecutionContext* context, int timeoutId)
105 if (timeoutId <= 0)
108 InspectorInstrumentation::didRemoveTimer(context, timeoutId);
110 delete context->findTimeout(timeoutId);
DOMTimer.h 46 static void removeById(ScriptExecutionContext*, int timeoutId);
DOMWindow.h 246 void clearTimeout(int timeoutId);
248 void clearInterval(int timeoutId);
DOMWindow.cpp     [all...]
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.h 140 void addTimeout(int timeoutId, DOMTimer*);
141 void removeTimeout(int timeoutId);
142 DOMTimer* findTimeout(int timeoutId);
ScriptExecutionContext.cpp 363 void ScriptExecutionContext::addTimeout(int timeoutId, DOMTimer* timer)
365 ASSERT(!m_timeouts.contains(timeoutId));
366 m_timeouts.set(timeoutId, timer);
369 void ScriptExecutionContext::removeTimeout(int timeoutId)
371 m_timeouts.remove(timeoutId);
374 DOMTimer* ScriptExecutionContext::findTimeout(int timeoutId)
376 return m_timeouts.get(timeoutId);
  /external/webkit/Source/WebCore/workers/
WorkerContext.h 102 void clearTimeout(int timeoutId);
104 void clearInterval(int timeoutId);
WorkerContext.cpp 217 void WorkerContext::clearTimeout(int timeoutId)
219 DOMTimer::removeById(scriptExecutionContext(), timeoutId);
227 void WorkerContext::clearInterval(int timeoutId)
229 DOMTimer::removeById(scriptExecutionContext(), timeoutId);
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 205 window.clearInterval(timeoutId)
208 var timeoutId = window.setInterval(animate, animation.time/animation.fps * 1000);

Completed in 78 milliseconds