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

/external/webkit/WebCore/bindings/v8/custom/
H A DV8WorkerContextCustom.cpp49 v8::Handle<v8::Value> SetTimeoutOrInterval(const v8::Arguments& args, bool singleShot) argument
64 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
76 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);
135 id = DOMTimer::install(scriptContext, new ScheduledAction(V8Proxy::context(imp->frame()), functionString), timeout, singleShot);
/external/webkit/WebCore/page/
H A DDOMTimer.cpp46 DOMTimer::DOMTimer(ScriptExecutionContext* context, ScheduledAction* action, int timeout, bool singleShot) argument
73 if (singleShot)
85 int DOMTimer::install(ScriptExecutionContext* context, ScheduledAction* action, int timeout, bool singleShot) argument
90 DOMTimer* timer = new DOMTimer(context, action, timeout, singleShot);
94 timelineAgent->didInstallTimer(timer->m_timeoutId, timeout, singleShot);
/external/webkit/WebCore/inspector/
H A DTimelineRecordFactory.cpp67 ScriptObject TimelineRecordFactory::createTimerInstallData(InspectorFrontend* frontend, int timerId, int timeout, bool singleShot) argument
72 data.set("singleShot", singleShot);
H A DInspectorTimelineAgent.cpp112 void InspectorTimelineAgent::didInstallTimer(int timerId, int timeout, bool singleShot) argument
115 record.set("data", TimelineRecordFactory::createTimerInstallData(m_frontend, timerId, timeout, singleShot));

Completed in 325 milliseconds