Home
last modified time | relevance | path

Searched refs:endInfo (Results 1 – 8 of 8) sorted by relevance

/external/catch2/include/internal/
Dcatch_section.cpp24 SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() }; in ~Section() local
26 getResultCapture().sectionEndedEarly( endInfo ); in ~Section()
28 getResultCapture().sectionEnded( endInfo ); in ~Section()
Dcatch_run_context.cpp210 void RunContext::sectionEnded(SectionEndInfo const & endInfo) { in sectionEnded() argument
211 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
219 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded()
224 void RunContext::sectionEndedEarly(SectionEndInfo const & endInfo) { in sectionEndedEarly() argument
231 m_unfinishedSections.push_back(endInfo); in sectionEndedEarly()
Dcatch_interfaces_capture.h39 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0;
40 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
Dcatch_run_context.h80 void sectionEnded( SectionEndInfo const& endInfo ) override;
81 void sectionEndedEarly( SectionEndInfo const& endInfo ) override;
/external/clang/lib/Lex/
DMacroInfo.cpp55 endInfo = SM.getDecomposedExpansionLoc(macroEnd); in getDefinitionLengthSlow() local
56 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow()
58 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow()
59 DefinitionLength = endInfo.second - startInfo.second; in getDefinitionLengthSlow()
/external/clang/lib/Edit/
DCommit.cpp312 std::pair<FileID, unsigned> endInfo = SM.getDecomposedLoc(range.getEnd()); in canRemoveRange() local
313 if (beginInfo.first != endInfo.first || in canRemoveRange()
314 beginInfo.second > endInfo.second) in canRemoveRange()
318 Len = endInfo.second - beginInfo.second; in canRemoveRange()
/external/bcc/tests/cc/
Dcatch.hpp1972 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0;
1973 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
5986 virtual void sectionEnded( SectionEndInfo const& endInfo ) { in sectionEnded() argument
5987 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
5995 …m_reporter->sectionEnded( SectionStats( endInfo.sectionInfo, assertions, endInfo.durationInSeconds… in sectionEnded()
5999 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) { in sectionEndedEarly() argument
6006 m_unfinishedSections.push_back( endInfo ); in sectionEndedEarly()
7855 SectionEndInfo endInfo( m_info, m_assertions, m_timer.getElapsedSeconds() ); in ~Section() local
7857 getResultCapture().sectionEndedEarly( endInfo ); in ~Section()
7859 getResultCapture().sectionEnded( endInfo ); in ~Section()
/external/catch2/single_include/catch2/
Dcatch.hpp2093 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0;
2094 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
6181 void sectionEnded( SectionEndInfo const& endInfo ) override;
6182 void sectionEndedEarly( SectionEndInfo const& endInfo ) override;
10439 void RunContext::sectionEnded(SectionEndInfo const & endInfo) { in sectionEnded() argument
10440 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
10448 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded()
10453 void RunContext::sectionEndedEarly(SectionEndInfo const & endInfo) { in sectionEndedEarly() argument
10460 m_unfinishedSections.push_back(endInfo); in sectionEndedEarly()
10743 SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() }; in ~Section() local
[all …]