HomeSort by relevance Sort by last modified time
    Searched refs:timerId (Results 1 - 25 of 25) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/qt/
ContextShadowQt.cpp 55 int timerId;
60 , timerId(-1)
92 if (timerId >= 0)
93 killTimer(timerId);
94 timerId = startTimer(BufferPurgeDelay * 1000);
99 if (event->timerId() == timerId) {
100 killTimer(timerId);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
content.js 28 var timerId = timers[type];
29 var eventInProgress = (timerId > 0);
31 clearTimeout(timerId);
  /external/webkit/Source/WebCore/inspector/
TimelineRecordFactory.h 55 static PassRefPtr<InspectorObject> createGenericTimerData(int timerId);
57 static PassRefPtr<InspectorObject> createTimerInstallData(int timerId, int timeout, bool singleShot);
InspectorTimelineAgent.h 97 void didInstallTimer(int timerId, int timeout, bool singleShot);
98 void didRemoveTimer(int timerId);
99 void willFireTimer(int timerId);
InspectorTimelineAgent.cpp 223 void InspectorTimelineAgent::didInstallTimer(int timerId, int timeout, bool singleShot)
227 record->setObject("data", TimelineRecordFactory::createTimerInstallData(timerId, timeout, singleShot));
231 void InspectorTimelineAgent::didRemoveTimer(int timerId)
235 record->setObject("data", TimelineRecordFactory::createGenericTimerData(timerId));
239 void InspectorTimelineAgent::willFireTimer(int timerId)
241 pushCurrentRecord(TimelineRecordFactory::createGenericTimerData(timerId), TimelineRecordType::TimerFire);
TimelineRecordFactory.cpp 79 PassRefPtr<InspectorObject> TimelineRecordFactory::createGenericTimerData(int timerId)
82 data->setNumber("timerId", timerId);
86 PassRefPtr<InspectorObject> TimelineRecordFactory::createTimerInstallData(int timerId, int timeout, bool singleShot)
89 data->setNumber("timerId", timerId);
InspectorInstrumentation.h 89 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, int timeout, bool singleShot)
428 didInstallTimerImpl(inspectorAgent, timerId, timeout, singleShot);
432 inline void InspectorInstrumentation::didRemoveTimer(ScriptExecutionContext* context, int timerId)
436 didRemoveTimerImpl(inspectorAgent, timerId);
    [all...]
InspectorInstrumentation.cpp 195 void InspectorInstrumentation::didInstallTimerImpl(InspectorAgent* inspectorAgent, int timerId, int timeout, bool singleShot)
199 timelineAgent->didInstallTimer(timerId, timeout, singleShot);
202 void InspectorInstrumentation::didRemoveTimerImpl(InspectorAgent* inspectorAgent, int timerId)
206 timelineAgent->didRemoveTimer(timerId);
302 InspectorInstrumentationCookie InspectorInstrumentation::willFireTimerImpl(InspectorAgent* inspectorAgent, int timerId)
309 timelineAgent->willFireTimer(timerId);
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
SharedTimerQt.cpp 116 if (!m_timerFunction || ev->timerId() != m_timer.timerId())
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WorkerContextCustom.cpp 60 int timerId;
69 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
81 timerId = DOMTimer::install(workerContext, action, timeout, singleShot);
85 return v8::Integer::New(timerId);
  /external/webkit/Tools/QtTestBrowser/
fpstimer.cpp 75 if (event->timerId() != m_timer)
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
Timers.java 55 public static TimerObj findTimer(ArrayList<TimerObj> timers, int timerId) {
59 if (t.mTimerId == timerId) {
TimerFragment.java 517 int timerId = mPrefs.getInt(Timers.NOTIF_ID, -1);
518 if (timerId != -1) {
519 TimerObj t = Timers.findTimer(mAdapter.mTimers, timerId);
521 cancelTimerNotification(timerId);
    [all...]
TimerReceiver.java 158 int timerId = (t == null) ? -1 : t.mTimerId;
164 intent.putExtra(Timers.TIMER_INTENT_EXTRA, timerId);
  /external/webkit/Source/WebKit2/Platform/qt/
RunLoopQt.cpp 55 RunLoop::TimerBase::timerFired(m_runLoop, event->timerId());
  /libcore/luni/src/main/java/java/util/
Timer.java 342 private static long timerId;
345 return timerId++;
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.cpp 587 int timerId = ev->timerId();
588 if (timerId == d->tripleClickTimer.timerId())
  /external/webkit/Source/WebCore/inspector/front-end/
TimelinePanel.js 331 parentRecord = this._timerRecords[record.data.timerId];
    [all...]
  /external/chromium/chrome/browser/resources/
print_preview.js 19 var timerId;
590 timerId = window.setTimeout(onPageSelectionMayHaveChanged, 500);
598 clearTimeout(timerId);
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview.cpp 127 if (event->timerId() == pressTimer.timerId()) {
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.cpp 353 if (ev->timerId() == m_timeoutTimer.timerId()) {
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp 654 int timerId = ev->timerId();
655 if (timerId == tripleClickTimer.timerId())
    [all...]
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 522 milliseconds