Searched defs:singleShot (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WorkerContextCustom.cpp50 v8::Handle<v8::Value> SetTimeoutOrInterval(const v8::Arguments& args, bool singleShot) argument
69 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
81 timerId = DOMTimer::install(workerContext, action, timeout, singleShot);
H A DV8DOMWindowCustom.cpp74 v8::Handle<v8::Value> WindowSetTimeoutImpl(const v8::Arguments& args, bool singleShot) argument
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/page/
H A DDOMTimer.cpp65 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot) argument
76 if (singleShot)
88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) argument
93 DOMTimer* timer = new DOMTimer(context, action, timeout, singleShot);
95 InspectorInstrumentation::didInstallTimer(context, timer->m_timeoutId, timeout, singleShot);
/external/webkit/Source/WebCore/inspector/
H A DTimelineRecordFactory.cpp86 PassRefPtr<InspectorObject> TimelineRecordFactory::createTimerInstallData(int timerId, int timeout, bool singleShot) argument
91 data->setBoolean("singleShot", singleShot);
H A DInspectorTimelineAgent.cpp223 void InspectorTimelineAgent::didInstallTimer(int timerId, int timeout, bool singleShot) argument
227 record->setObject("data", TimelineRecordFactory::createTimerInstallData(timerId, timeout, singleShot));
H A DInspectorInstrumentation.h89 static void didInstallTimer(ScriptExecutionContext*, int timerId, int timeout, bool singleShot);
208 static void didInstallTimerImpl(InspectorAgent*, int timerId, int timeout, bool singleShot);
424 inline void InspectorInstrumentation::didInstallTimer(ScriptExecutionContext* context, int timerId, int timeout, bool singleShot) argument
428 didInstallTimerImpl(inspectorAgent, timerId, timeout, singleShot);
H A DInspectorInstrumentation.cpp195 void InspectorInstrumentation::didInstallTimerImpl(InspectorAgent* inspectorAgent, int timerId, int timeout, bool singleShot) argument
199 timelineAgent->didInstallTimer(timerId, timeout, singleShot);

Completed in 893 milliseconds