Home
last modified time | relevance | path

Searched refs:timerId (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/qt/
DContextShadowQt.cpp55 int timerId; member in WebCore::ShadowBuffer
60 , timerId(-1) in ShadowBuffer()
92 if (timerId >= 0) in schedulePurge()
93 killTimer(timerId); in schedulePurge()
94 timerId = startTimer(BufferPurgeDelay * 1000); in schedulePurge()
99 if (event->timerId() == timerId) { in timerEvent()
100 killTimer(timerId); in timerEvent()
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
Dcontent.js28 var timerId = timers[type];
29 var eventInProgress = (timerId > 0);
31 clearTimeout(timerId);
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8WorkerContextCustom.cpp60 int timerId; in SetTimeoutOrInterval() local
69timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerCo… in SetTimeoutOrInterval()
81 timerId = DOMTimer::install(workerContext, action, timeout, singleShot); in SetTimeoutOrInterval()
85 return v8::Integer::New(timerId); in SetTimeoutOrInterval()
/external/webkit/Source/WebCore/inspector/
DInspectorTimelineAgent.cpp223 void InspectorTimelineAgent::didInstallTimer(int timerId, int timeout, bool singleShot) in didInstallTimer() argument
227 …record->setObject("data", TimelineRecordFactory::createTimerInstallData(timerId, timeout, singleSh… in didInstallTimer()
231 void InspectorTimelineAgent::didRemoveTimer(int timerId) in didRemoveTimer() argument
235 record->setObject("data", TimelineRecordFactory::createGenericTimerData(timerId)); in didRemoveTimer()
239 void InspectorTimelineAgent::willFireTimer(int timerId) in willFireTimer() argument
241 …pushCurrentRecord(TimelineRecordFactory::createGenericTimerData(timerId), TimelineRecordType::Time… in willFireTimer()
DInspectorTimelineAgent.h97 void didInstallTimer(int timerId, int timeout, bool singleShot);
98 void didRemoveTimer(int timerId);
99 void willFireTimer(int timerId);
DTimelineRecordFactory.cpp79 PassRefPtr<InspectorObject> TimelineRecordFactory::createGenericTimerData(int timerId) in createGenericTimerData() argument
82 data->setNumber("timerId", timerId); in createGenericTimerData()
86 PassRefPtr<InspectorObject> TimelineRecordFactory::createTimerInstallData(int timerId, int timeout,… in createTimerInstallData() argument
89 data->setNumber("timerId", timerId); in createTimerInstallData()
DTimelineRecordFactory.h55 static PassRefPtr<InspectorObject> createGenericTimerData(int timerId);
57 …static PassRefPtr<InspectorObject> createTimerInstallData(int timerId, int timeout, bool singleSho…
DInspectorInstrumentation.h89 static void didInstallTimer(ScriptExecutionContext*, int timerId, int timeout, bool singleShot);
90 static void didRemoveTimer(ScriptExecutionContext*, int timerId);
102 static InspectorInstrumentationCookie willFireTimer(ScriptExecutionContext*, int timerId);
208 static void didInstallTimerImpl(InspectorAgent*, int timerId, int timeout, bool singleShot);
209 static void didRemoveTimerImpl(InspectorAgent*, int timerId);
221 static InspectorInstrumentationCookie willFireTimerImpl(InspectorAgent*, int timerId);
424 inline void InspectorInstrumentation::didInstallTimer(ScriptExecutionContext* context, int timerId,… in didInstallTimer() argument
428 didInstallTimerImpl(inspectorAgent, timerId, timeout, singleShot); in didInstallTimer()
432 inline void InspectorInstrumentation::didRemoveTimer(ScriptExecutionContext* context, int timerId) in didRemoveTimer() argument
436 didRemoveTimerImpl(inspectorAgent, timerId); in didRemoveTimer()
[all …]
DInspectorInstrumentation.cpp195 void InspectorInstrumentation::didInstallTimerImpl(InspectorAgent* inspectorAgent, int timerId, int… in didInstallTimerImpl() argument
199 timelineAgent->didInstallTimer(timerId, timeout, singleShot); in didInstallTimerImpl()
202 void InspectorInstrumentation::didRemoveTimerImpl(InspectorAgent* inspectorAgent, int timerId) in didRemoveTimerImpl() argument
206 timelineAgent->didRemoveTimer(timerId); in didRemoveTimerImpl()
302 …tionCookie InspectorInstrumentation::willFireTimerImpl(InspectorAgent* inspectorAgent, int timerId) in willFireTimerImpl() argument
309 timelineAgent->willFireTimer(timerId); in willFireTimerImpl()
/external/webkit/Source/WebCore/platform/qt/
DSharedTimerQt.cpp116 if (!m_timerFunction || ev->timerId() != m_timer.timerId()) in timerEvent()
/external/chromium/chrome/browser/resources/
Dprint_preview.js19 var timerId; variable
590 timerId = window.setTimeout(onPageSelectionMayHaveChanged, 500);
598 clearTimeout(timerId);
/external/webkit/Tools/QtTestBrowser/
Dfpstimer.cpp75 if (event->timerId() != m_timer) in timerEvent()
/external/webkit/Source/WebKit2/UIProcess/API/qt/
Dqwkpage.cpp587 int timerId = ev->timerId(); in timerEvent() local
588 if (timerId == d->tripleClickTimer.timerId()) in timerEvent()
/external/webkit/Source/WebKit2/Platform/qt/
DRunLoopQt.cpp55 RunLoop::TimerBase::timerFired(m_runLoop, event->timerId()); in timerEvent()
/external/webkit/Source/WebCore/inspector/front-end/
DTimelinePanel.js331 parentRecord = this._timerRecords[record.data.timerId];
905 panel._timerRecords[record.data.timerId] = this;
907 var timerInstalledRecord = panel._timerRecords[record.data.timerId];
966 contentHelper._appendTextRow(WebInspector.UIString("Timer ID"), this.data.timerId);
/external/webkit/Source/WebKit/qt/declarative/
Dqdeclarativewebview.cpp127 if (event->timerId() == pressTimer.timerId()) { in timerEvent()
/external/webkit/Tools/DumpRenderTree/qt/
DLayoutTestControllerQt.cpp353 if (ev->timerId() == m_timeoutTimer.timerId()) { in timerEvent()
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
Djquery-1.3.2.js3766 timerId, variable
4052 if ( t() && jQuery.timers.push(t) && !timerId ) {
4053 timerId = setInterval(function(){
4061 clearInterval( timerId );
4062 timerId = undefined;
Dconcat-jquery-mootools-prototype.js3766 timerId, variable
4052 if ( t() && jQuery.timers.push(t) && !timerId ) {
4053 timerId = setInterval(function(){
4061 clearInterval( timerId );
4062 timerId = undefined;
/external/webkit/Source/WebKit/qt/Api/
Dqwebpage.cpp654 int timerId = ev->timerId(); in timerEvent() local
655 if (timerId == tripleClickTimer.timerId()) in timerEvent()
/external/webkit/Source/WebCore/
DChangeLog-2007-10-1430881 (WebCore::transferJobStatusCallback): Rename timerId to jobId, since