Searched refs:endInfo (Results 1 – 8 of 8) sorted by relevance
/external/catch2/include/internal/ |
D | catch_section.cpp | 24 SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() }; in ~Section() local 26 getResultCapture().sectionEndedEarly( endInfo ); in ~Section() 28 getResultCapture().sectionEnded( endInfo ); in ~Section()
|
D | catch_run_context.cpp | 210 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()
|
D | catch_interfaces_capture.h | 39 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0; 40 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
|
D | catch_run_context.h | 80 void sectionEnded( SectionEndInfo const& endInfo ) override; 81 void sectionEndedEarly( SectionEndInfo const& endInfo ) override;
|
/external/clang/lib/Lex/ |
D | MacroInfo.cpp | 55 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/ |
D | Commit.cpp | 312 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/ |
D | catch.hpp | 1972 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/ |
D | catch.hpp | 2093 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 …]
|