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

  /external/webkit/WebCore/inspector/
TimelineRecordFactory.h 51 static ScriptObject createGenericTimerData(InspectorFrontend*, int timerId);
53 static ScriptObject createTimerInstallData(InspectorFrontend*, int timerId, int timeout, bool singleShot);
InspectorTimelineAgent.h 92 void didInstallTimer(int timerId, int timeout, bool singleShot);
93 void didRemoveTimer(int timerId);
94 void willFireTimer(int timerId);
TimelineRecordFactory.cpp 60 ScriptObject TimelineRecordFactory::createGenericTimerData(InspectorFrontend* frontend, int timerId)
63 data.set("timerId", timerId);
67 ScriptObject TimelineRecordFactory::createTimerInstallData(InspectorFrontend* frontend, int timerId, int timeout, bool singleShot)
70 data.set("timerId", timerId);
InspectorTimelineAgent.cpp 112 void InspectorTimelineAgent::didInstallTimer(int timerId, int timeout, bool singleShot)
115 record.set("data", TimelineRecordFactory::createTimerInstallData(m_frontend, timerId, timeout, singleShot));
119 void InspectorTimelineAgent::didRemoveTimer(int timerId)
122 record.set("data", TimelineRecordFactory::createGenericTimerData(m_frontend, timerId));
126 void InspectorTimelineAgent::willFireTimer(int timerId)
128 pushCurrentRecord(TimelineRecordFactory::createGenericTimerData(m_frontend, timerId), TimerFireTimelineRecordType);
  /external/webkit/WebCore/platform/qt/
SharedTimerQt.cpp 101 if (!m_timerFunction || ev->timerId() != m_timer.timerId())
  /external/webkit/WebCore/bindings/v8/custom/
V8WorkerContextCustom.cpp 59 int timerId;
64 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
76 timerId = DOMTimer::install(workerContext, action, timeout, singleShot);
80 return v8::Integer::New(timerId);
  /libcore/luni/src/main/java/java/util/
Timer.java 343 private static long timerId;
346 return timerId++;
  /external/webkit/WebKitTools/DumpRenderTree/qt/
LayoutTestControllerQt.cpp 265 if (ev->timerId() == m_timeoutTimer.timerId()) {
  /external/qemu/
vl-android.c 888 MMRESULT timerId;
    [all...]
vl.c 962 MMRESULT timerId;
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp 705 int timerId = ev->timerId();
706 if (timerId == tripleClickTimer.timerId())
    [all...]
  /external/webkit/WebCore/inspector/front-end/
TimelinePanel.js 235 return record.data.timerId;
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 

Completed in 1034 milliseconds