Searched refs:singleShot (Results 1 - 20 of 20) 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.cpp71 int DOMTimer::install(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) argument
73 int timeoutID = context->installNewTimeout(action, timeout, singleShot);
74 TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "TimerInstall", "data", InspectorTimerInstallEvent::data(context, timeoutID, timeout, singleShot));
77 InspectorInstrumentation::didInstallTimer(context, timeoutID, timeout, singleShot);
78 WTF_LOG(Timers, "DOMTimer::install: timeoutID = %d, timeout = %d, singleShot = %d", timeoutID, timeout, singleShot ? 1 : 0);
92 DOMTimer::DOMTimer(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot, int timeoutID) argument
105 if (singleShot)
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8WorkerGlobalScopeCustom.cpp48 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/dom/
H A DExecutionContext.cpp184 int ExecutionContext::installNewTimeout(PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) argument
192 TimeoutMap::AddResult result = m_timeouts.add(timeoutID, DOMTimer::create(this, action, timeout, singleShot, timeoutID));
H A DExecutionContext.h155 int installNewTimeout(PassOwnPtr<ScheduledAction>, int timeout, bool singleShot);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DAsyncCallStackTracker.cpp138 void AsyncCallStackTracker::didInstallTimer(ExecutionContext* context, int timerId, bool singleShot, const ScriptValue& callFrames) argument
146 data->m_timerCallChains.set(timerId, createAsyncCallChain(singleShot ? setTimeoutName : setIntervalName, callFrames));
147 if (!singleShot)
H A DAsyncCallStackTracker.h119 void didInstallTimer(ExecutionContext*, int timerId, bool singleShot, const ScriptValue& callFrames);
H A DInspectorDOMDebuggerAgent.h89 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singleShot);
H A DInspectorTraceEvents.h71 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContext*, int timerId, int timeout, bool singleShot);
H A DTimelineRecordFactory.h58 static PassRefPtr<JSONObject> createTimerInstallData(int timerId, int timeout, bool singleShot);
H A DTimelineRecordFactory.cpp103 PassRefPtr<JSONObject> TimelineRecordFactory::createTimerInstallData(int timerId, int timeout, bool singleShot) argument
108 data->setBoolean("singleShot", singleShot);
H A DInspectorTraceEvents.cpp203 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorTimerInstallEvent::data(ExecutionContext* context, int timerId, int timeout, bool singleShot) argument
207 value->setBoolean("singleShot", singleShot);
H A DInspectorTimelineAgent.h178 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singleShot);
H A DInspectorDebuggerAgent.h155 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singleShot);
H A DInspectorInstrumentation.idl143 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, bool singleShot);
H A DInspectorDebuggerAgent.cpp739 void InspectorDebuggerAgent::didInstallTimer(ExecutionContext* context, int timerId, int timeout, bool singleShot) argument
742 asyncCallStackTracker().didInstallTimer(context, timerId, singleShot, scriptDebugServer().currentCallFramesForAsyncStack());
H A DInspectorTimelineAgent.cpp708 void InspectorTimelineAgent::didInstallTimer(ExecutionContext* context, int timerId, int timeout, bool singleShot) argument
710 appendRecord(TimelineRecordFactory::createTimerInstallData(timerId, timeout, singleShot), TimelineRecordType::TimerInstall, true, frameForExecutionContext(context));
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp880 QTimer::singleShot(5 * 1000, this, SLOT(showTrayStatus()));
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 239 milliseconds