Lines Matching refs:endInfo
2422 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0;
2423 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
8022 void sectionEnded( SectionEndInfo const& endInfo ) override;
8023 void sectionEndedEarly( SectionEndInfo const& endInfo ) override;
12620 void RunContext::sectionEnded(SectionEndInfo const & endInfo) { in sectionEnded() argument
12621 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
12629 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded()
12634 void RunContext::sectionEndedEarly(SectionEndInfo const & endInfo) { in sectionEndedEarly() argument
12641 m_unfinishedSections.push_back(endInfo); in sectionEndedEarly()
12945 SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() }; in ~Section() local
12947 getResultCapture().sectionEndedEarly( endInfo ); in ~Section()
12949 getResultCapture().sectionEnded( endInfo ); in ~Section()