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

1 2 3

  /external/webkit/Source/WebKit2/UIProcess/
ResponsivenessTimer.cpp 38 , m_timer(RunLoop::main(), this, &ResponsivenessTimer::timerFired)
44 m_timer.stop();
49 m_timer.stop();
60 m_timer.stop();
65 if (m_timer.isActive())
71 m_timer.startOneShot(kResponsivenessTimeout);
82 m_timer.stop();
ResponsivenessTimer.h 58 RunLoop::Timer<ResponsivenessTimer> m_timer; member in class:WebKit::ResponsivenessTimer
  /external/webkit/Source/WebCore/platform/mock/
DeviceOrientationClientMock.cpp 35 , m_timer(this, &DeviceOrientationClientMock::timerFired)
55 m_timer.stop();
61 if (m_isUpdating && !m_timer.isActive())
62 m_timer.startOneShot(0);
67 ASSERT_UNUSED(timer, timer == &m_timer);
68 m_timer.stop();
SpeechInputClientMock.cpp 43 , m_timer(this, &SpeechInputClientMock::timerFired)
56 if (m_timer.isActive())
61 m_timer.startOneShot(0);
68 if (m_timer.isActive() && m_recording) {
69 m_timer.stop();
70 timerFired(&m_timer);
76 if (m_timer.isActive()) {
78 m_timer.stop();
107 m_timer.startOneShot(0);
DeviceOrientationClientMock.h 61 Timer<DeviceOrientationClientMock> m_timer; member in class:WebCore::DeviceOrientationClientMock
  /external/webkit/Source/WebCore/storage/wince/
LocalStorageThreadWinCE.cpp 33 : m_timer(this, &LocalStorageThread::timerFired)
53 m_timer.startOneShot(0);
60 if (!m_timer.isActive())
61 m_timer.startOneShot(0);
67 if (!m_timer.isActive())
68 m_timer.startOneShot(0);
74 m_timer.stop();
80 m_timer.stop();
DatabaseThreadWinCE.cpp 33 : m_timer(this, &DatabaseThread::timerFired)
58 m_timer.startOneShot(0);
65 if (!m_timer.isActive())
66 m_timer.startOneShot(0);
LocalStorageThreadWinCE.h 53 Timer<LocalStorageThread> m_timer; member in class:WebCore::LocalStorageThread
  /external/webkit/Source/WebCore/platform/cf/
RunLoopTimerCF.cpp 50 if (m_timer)
51 CFRunLoopTimerInvalidate(m_timer.get());
53 m_timer.adoptCF(CFRunLoopTimerCreate(0, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context));
59 ASSERT_WITH_MESSAGE(m_timer, "Timer must have one of the start functions called before calling schedule().");
60 CFRunLoopAddTimer(schedulePair->runLoop(), m_timer.get(), schedulePair->mode());
72 if (!m_timer)
74 CFRunLoopTimerInvalidate(m_timer.get());
75 m_timer = 0;
80 return m_timer && CFRunLoopTimerIsValid(m_timer.get())
    [all...]
  /external/webkit/Tools/QtTestBrowser/
fpstimer.cpp 41 , m_timer(0)
62 m_timer = startTimer(FPS_MEASURE_INTERVAL);
67 if (!m_timer)
69 killTimer(m_timer);
75 if (event->timerId() != m_timer)
fpstimer.h 50 int m_timer; member in class:FpsTimer
  /external/webkit/Tools/DumpRenderTree/mac/
UIDelegate.h 36 NSTimer *m_timer; variable
  /external/webkit/Source/WebCore/platform/qt/
SharedTimerQt.cpp 60 QBasicTimer m_timer; member in class:WebCore::SharedTimerQt
71 if (m_timer.isActive()) {
106 m_timer.start(intervalInMS, this);
111 m_timer.stop();
116 if (!m_timerFunction || ev->timerId() != m_timer.timerId())
119 m_timer.stop();
  /external/webkit/Source/WebCore/dom/
ScriptRunner.cpp 39 , m_timer(this, &ScriptRunner::timerFired)
65 if (!m_timer.isActive())
66 m_timer.startOneShot(0);
80 m_timer.stop();
86 m_timer.startOneShot(0);
92 m_timer.startOneShot(0);
97 ASSERT_UNUSED(timer, timer == &m_timer);
DeviceMotionController.cpp 37 , m_timer(this, &DeviceMotionController::timerFired)
50 ASSERT_UNUSED(timer, timer == &m_timer);
52 m_timer.stop();
70 if (!m_timer.isActive())
71 m_timer.startOneShot(0);
DeviceOrientationController.cpp 38 , m_timer(this, &DeviceOrientationController::timerFired)
51 ASSERT_UNUSED(timer, timer == &m_timer);
71 if (!m_timer.isActive())
72 m_timer.startOneShot(0);
  /external/webkit/Source/WebKit2/Platform/mac/
RunLoopMac.mm 114 , m_timer(0)
125 if (m_timer)
130 m_timer = CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context);
131 CFRunLoopAddTimer(m_runLoop->m_runLoop, m_timer, kCFRunLoopCommonModes);
136 if (!m_timer)
139 CFRunLoopTimerInvalidate(m_timer);
140 CFRelease(m_timer);
141 m_timer = 0;
146 return m_timer && CFRunLoopTimerIsValid(m_timer);
    [all...]
  /external/webkit/Source/WebCore/platform/android/
PackageNotifier.cpp 37 : m_onResultAvailable(0), m_isInitialized(false), m_timer(this, &PackageNotifier::timerFired) { }
71 if (!m_isInitialized || m_timer.isActive())
74 m_timer.startOneShot(0);
79 m_timer.stop();
  /external/webkit/Source/WebCore/wml/
WMLTimerElement.cpp 41 , m_timer(this, &WMLTimerElement::timerFired)
122 if (!m_card || m_timer.isActive())
134 m_timer.startOneShot(interval / 10.0f);
139 if (m_timer.isActive())
140 m_timer.stop();
145 if (!m_timer.isActive())
148 int interval = static_cast<int>(m_timer.nextFireInterval()) * 10;
WMLTimerElement.h 53 Timer<WMLTimerElement> m_timer; member in class:WebCore::WMLTimerElement
  /external/webkit/Source/WebCore/html/
ValidationMessage.cpp 73 m_timer.set(new Timer<ValidationMessage>(this, &ValidationMessage::buildBubbleTree));
75 m_timer.set(new Timer<ValidationMessage>(this, &ValidationMessage::setMessageDOMAndStartTimer));
76 m_timer->startOneShot(0);
100 m_timer.clear();
102 m_timer.set(new Timer<ValidationMessage>(this, &ValidationMessage::deleteBubbleTree));
103 m_timer->startOneShot(max(5.0, static_cast<double>(m_message.length()) * magnification / 1000));
151 m_timer.set(new Timer<ValidationMessage>(this, &ValidationMessage::deleteBubbleTree));
152 m_timer->startOneShot(0);
  /external/webkit/Source/WebCore/page/
PluginHalter.h 53 Timer<PluginHalter> m_timer; member in class:WebCore::PluginHalter
PluginHalter.cpp 41 , m_timer(this, &PluginHalter::timerFired)
108 if (m_timer.isActive())
115 m_timer.startOneShot(nextFireInterval < 0 ? 0 : nextFireInterval);
  /external/webkit/Source/WebKit/chromium/src/
DragScrollTimer.cpp 56 : m_timer(this, &DragScrollTimer::fired)
70 m_timer.stop();
102 else if (shouldScroll() && !m_timer.isActive())
103 m_timer.startOneShot(scrollStartDelay);
DragScrollTimer.h 61 WebCore::Timer<DragScrollTimer> m_timer; member in class:WebKit::DragScrollTimer

Completed in 901 milliseconds

1 2 3