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

/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDOMTimer.h44 static int install(ExecutionContext*, PassOwnPtr<ScheduledAction>, int timeout, bool singleShot);
63 static PassOwnPtr<DOMTimer> create(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot, int timeoutID) argument
65 return adoptPtr(new DOMTimer(context, action, timeout, singleShot, timeoutID));
68 DOMTimer(ExecutionContext*, PassOwnPtr<ScheduledAction>, int interval, bool singleShot, int timeoutID);
H A DDOMTimer.cpp70 int DOMTimer::install(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) argument
72 int timeoutID = context->installNewTimeout(action, timeout, singleShot);
73 TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "TimerInstall", "data", InspectorTimerInstallEvent::data(context, timeoutID, timeout, singleShot));
76 InspectorInstrumentation::didInstallTimer(context, timeoutID, timeout, singleShot);
89 DOMTimer::DOMTimer(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot, int timeoutID) argument
102 if (singleShot)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8WorkerGlobalScopeCustom.cpp49 static void setTimeoutOrInterval(const v8::FunctionCallbackInfo<v8::Value>& info, bool singleShot) argument
89 if (singleShot)
H A DV8WindowCustom.cpp73 static void windowSetTimeoutImpl(const v8::FunctionCallbackInfo<v8::Value>& info, bool singleShot, ExceptionState& exceptionState) argument
136 if (singleShot)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorTraceEvents.cpp164 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorTimerInstallEvent::data(ExecutionContext* context, int timerId, int timeout, bool singleShot) argument
168 data->setBoolean("singleShot", singleShot);
H A DAsyncCallStackTracker.cpp126 void AsyncCallStackTracker::didInstallTimer(ExecutionContext* context, int timerId, bool singleShot, const ScriptValue& callFrames) argument
134 data->m_timerCallChains.set(timerId, createAsyncCallChain(singleShot ? setTimeoutName : setIntervalName, callFrames));
135 if (!singleShot)
H A DTimelineRecordFactory.cpp103 PassRefPtr<JSONObject> TimelineRecordFactory::createTimerInstallData(int timerId, int timeout, bool singleShot) argument
108 data->setBoolean("singleShot", singleShot);
H A DInspectorDebuggerAgent.cpp666 void InspectorDebuggerAgent::didInstallTimer(ExecutionContext* context, int timerId, int timeout, bool singleShot) argument
669 m_asyncCallStackTracker.didInstallTimer(context, timerId, singleShot, scriptDebugServer().currentCallFramesForAsyncStack());
H A DInspectorTimelineAgent.cpp662 void InspectorTimelineAgent::didInstallTimer(ExecutionContext* context, int timerId, int timeout, bool singleShot) argument
664 appendRecord(TimelineRecordFactory::createTimerInstallData(timerId, timeout, singleShot), TimelineRecordType::TimerInstall, true, frameForExecutionContext(context));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DExecutionContext.cpp201 int ExecutionContext::installNewTimeout(PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) argument
209 TimeoutMap::AddResult result = m_timeouts.add(timeoutID, DOMTimer::create(this, action, timeout, singleShot, timeoutID));

Completed in 357 milliseconds