Home | History | Annotate | Download | only in dom

Lines Matching refs:m_loadEventProgress

921     bool loadEventStillNeeded() const { return m_loadEventProgress == LoadEventNotRun; }
922 bool processingLoadEvent() const { return m_loadEventProgress == LoadEventInProgress; }
923 bool loadEventFinished() const { return m_loadEventProgress >= LoadEventCompleted; }
924 bool unloadEventStillNeeded() const { return m_loadEventProgress >= LoadEventTried && m_loadEventProgress <= UnloadEventInProgress; }
925 void unloadEventStarted() { m_loadEventProgress = UnloadEventInProgress; }
926 void unloadEventWasHandled() { m_loadEventProgress = UnloadEventHandled; }
1251 LoadEventProgress m_loadEventProgress;