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

  /external/webkit/WebCore/page/
DOMTimer.cpp 28 #include "DOMTimer.h"
42 double DOMTimer::s_minTimerInterval = 0.010; // 10 milliseconds
46 DOMTimer::DOMTimer(ScriptExecutionContext* context, ScheduledAction* action, int timeout, bool singleShot)
79 DOMTimer::~DOMTimer()
85 int DOMTimer::install(ScriptExecutionContext* context, ScheduledAction* action, int timeout, bool singleShot)
87 // DOMTimer constructor links the new timer into a list of ActiveDOMObjects held by the 'context'.
88 // The timer is deleted when context is deleted (DOMTimer::contextDestroyed) or explicitly via DOMTimer::removeById()
    [all...]
DOMTimer.h 39 class DOMTimer : public TimerBase, public ActiveDOMObject {
41 virtual ~DOMTimer();
62 DOMTimer(ScriptExecutionContext*, ScheduledAction*, int timeout, bool singleShot);
DOMWindow.cpp 40 #include "DOMTimer.h"
1262 return DOMTimer::install(context, action, timeout, true);
1270 DOMTimer::removeById(context, timeoutId);
1280 return DOMTimer::install(context, action, timeout, false);
1288 DOMTimer::removeById(context, timeoutId);
    [all...]
  /external/webkit/WebCore/dom/
ScriptExecutionContext.h 47 class DOMTimer;
125 void addTimeout(int timeoutId, DOMTimer*);
127 DOMTimer* findTimeout(int timeoutId);
149 HashMap<int, DOMTimer*> m_timeouts;
ScriptExecutionContext.cpp 248 void ScriptExecutionContext::addTimeout(int timeoutId, DOMTimer* timer)
259 DOMTimer* ScriptExecutionContext::findTimeout(int timeoutId)
  /external/webkit/WebKit/chromium/src/
WebKit.cpp 35 #include "DOMTimer.h"
66 WebCore::DOMTimer::setMinTimerInterval(0.004);
  /external/webkit/WebCore/workers/
WorkerContext.cpp 36 #include "DOMTimer.h"
173 return DOMTimer::install(scriptExecutionContext(), action, timeout, true);
178 DOMTimer::removeById(scriptExecutionContext(), timeoutId);
183 return DOMTimer::install(scriptExecutionContext(), action, timeout, false);
188 DOMTimer::removeById(scriptExecutionContext(), timeoutId);
  /external/webkit/WebCore/bindings/v8/custom/
V8WorkerContextCustom.cpp 36 #include "DOMTimer.h"
64 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
76 timerId = DOMTimer::install(workerContext, action, timeout, singleShot);
V8DOMWindowCustom.cpp 37 #include "DOMTimer.h"
133 id = DOMTimer::install(scriptContext, action, timeout, singleShot);
135 id = DOMTimer::install(scriptContext, new ScheduledAction(V8Proxy::context(imp->frame()), functionString), timeout, singleShot);
783 DOMTimer::removeById(context, handle);
  /external/webkit/WebCore/
Android.mk 336 page/DOMTimer.cpp \

Completed in 99 milliseconds