Lines Matching refs:endInfo
2460 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0;
2461 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
8120 void sectionEnded( SectionEndInfo const& endInfo ) override;
8121 void sectionEndedEarly( SectionEndInfo const& endInfo ) override;
12793 void RunContext::sectionEnded(SectionEndInfo const & endInfo) { in sectionEnded() argument
12794 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
12802 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded()
12807 void RunContext::sectionEndedEarly(SectionEndInfo const & endInfo) { in sectionEndedEarly() argument
12814 m_unfinishedSections.push_back(endInfo); in sectionEndedEarly()
13118 SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() }; in ~Section() local
13120 getResultCapture().sectionEndedEarly( endInfo ); in ~Section()
13122 getResultCapture().sectionEnded( endInfo ); in ~Section()