Home | History | Annotate | Download | only in qt

Lines Matching refs:runLoop

28 #include "RunLoop.h"
39 class RunLoop::TimerObject : public QObject
43 TimerObject(RunLoop* runLoop) : m_runLoop(runLoop)
55 RunLoop::TimerBase::timerFired(m_runLoop, event->timerId());
59 RunLoop* m_runLoop;
63 void RunLoop::run()
68 void RunLoop::stop()
73 RunLoop::RunLoop()
78 RunLoop::~RunLoop()
83 void RunLoop::wakeUp()
88 // RunLoop::Timer
90 void RunLoop::TimerBase::timerFired(RunLoop* runLoop, int ID)
92 TimerMap::iterator it = runLoop->m_activeTimers.find(ID);
93 ASSERT(it != runLoop->m_activeTimers.end());
98 runLoop->m_activeTimers.remove(it);
99 runLoop->m_timerObject->killTimer(timer->m_ID);
106 RunLoop::TimerBase::TimerBase(RunLoop* runLoop)
107 : m_runLoop(runLoop)
113 RunLoop::TimerBase::~TimerBase()
118 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat)
128 void RunLoop::TimerBase::stop()
141 bool RunLoop::TimerBase::isActive() const