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

  /external/webkit/Source/WebCore/page/
DOMTimer.cpp 28 #include "DOMTimer.h"
44 double DOMTimer::s_minDefaultTimerInterval = 0.010; // 10 milliseconds
65 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot)
82 DOMTimer::~DOMTimer()
88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
90 // DOMTimer constructor links the new timer into a list of ActiveDOMObjects held by the 'context'.
91 // The timer is deleted when context is deleted (DOMTimer::contextDestroyed) or explicitly via DOMTimer::removeById()
    [all...]
DOMTimer.h 39 class DOMTimer : public SuspendableTimer {
42 virtual ~DOMTimer();
58 DOMTimer(ScriptExecutionContext*, PassOwnPtr<ScheduledAction>, int interval, bool singleShot);
Settings.cpp 32 #include "DOMTimer.h"
490 DOMTimer::setDefaultMinTimerInterval(interval);
495 return DOMTimer::defaultMinTimerInterval();
DOMWindow.cpp 45 #include "DOMTimer.h"
    [all...]
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.h 56 class DOMTimer;
140 void addTimeout(int timeoutId, DOMTimer*);
142 DOMTimer* findTimeout(int timeoutId);
186 typedef HashMap<int, DOMTimer*> TimeoutMap;
ScriptExecutionContext.cpp 33 #include "DOMTimer.h"
363 void ScriptExecutionContext::addTimeout(int timeoutId, DOMTimer* timer)
374 DOMTimer* ScriptExecutionContext::findTimeout(int timeoutId)
417 DOMTimer* timer = iter->second;
425 // The default implementation returns the DOMTimer's default
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WorkerContextCustom.cpp 36 #include "DOMTimer.h"
69 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
81 timerId = DOMTimer::install(workerContext, action, timeout, singleShot);
V8DOMWindowCustom.cpp 36 #include "DOMTimer.h"
133 id = DOMTimer::install(scriptContext, action, timeout, singleShot);
137 id = DOMTimer::install(scriptContext, new ScheduledAction(V8Proxy::context(imp->frame()), functionString), timeout, singleShot);
  /external/webkit/Source/WebCore/workers/
WorkerContext.cpp 40 #include "DOMTimer.h"
214 return DOMTimer::install(scriptExecutionContext(), action, timeout, true);
219 DOMTimer::removeById(scriptExecutionContext(), timeoutId);
224 return DOMTimer::install(scriptExecutionContext(), action, timeout, false);
229 DOMTimer::removeById(scriptExecutionContext(), timeoutId);
  /external/webkit/Source/WebCore/
Android.mk 489 page/DOMTimer.cpp \
    [all...]

Completed in 639 milliseconds