Lines Matching refs:ProgressEvent
24 ProgressEvent::ProgressEvent(uint64_t progress_id, Optional<StringRef> message, in ProgressEvent() function in ProgressEvent
26 const ProgressEvent *prev_event) in ProgressEvent()
65 Optional<ProgressEvent> ProgressEvent::Create(uint64_t progress_id, in Create()
69 const ProgressEvent *prev_event) { in Create()
73 ProgressEvent event(progress_id, message, completed, total, prev_event); in Create()
84 bool ProgressEvent::EqualsForIDE(const ProgressEvent &other) const { in EqualsForIDE()
90 ProgressEventType ProgressEvent::GetEventType() const { return m_event_type; } in GetEventType()
92 StringRef ProgressEvent::GetEventName() const { in GetEventName()
101 json::Value ProgressEvent::ToJSON() const { in ToJSON()
126 bool ProgressEvent::Report(ProgressEventReportCallback callback) { in Report()
138 bool ProgressEvent::Reported() const { return m_reported; } in Reported()
141 const ProgressEvent &start_event, in ProgressEventManager()
159 const ProgressEvent &ProgressEventManager::GetMostRecentEvent() const { in GetMostRecentEvent()
165 if (Optional<ProgressEvent> event = ProgressEvent::Create( in Update()
218 if (Optional<ProgressEvent> event = in Push()
219 ProgressEvent::Create(progress_id, StringRef(message), completed, total)) { in Push()