HomeSort by relevance Sort by last modified time
    Searched defs:timeoutId (Results 1 - 2 of 2) 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);
  /external/webkit/Source/WebCore/workers/
WorkerContext.cpp 217 void WorkerContext::clearTimeout(int timeoutId)
219 DOMTimer::removeById(scriptExecutionContext(), timeoutId);
227 void WorkerContext::clearInterval(int timeoutId)
229 DOMTimer::removeById(scriptExecutionContext(), timeoutId);

Completed in 1149 milliseconds