/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_interfaces_capture.h | 44 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0; 45 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
|
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_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/llvm-project/clang/lib/Lex/ |
D | MacroInfo.cpp | 57 endInfo = SM.getDecomposedExpansionLoc(macroEnd); in getDefinitionLengthSlow() local 58 assert(startInfo.first == endInfo.first && in getDefinitionLengthSlow() 60 assert(startInfo.second <= endInfo.second); in getDefinitionLengthSlow() 61 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/llvm-project/clang/lib/Edit/ |
D | Commit.cpp | 313 std::pair<FileID, unsigned> endInfo = SM.getDecomposedLoc(range.getEnd()); in canRemoveRange() local 314 if (beginInfo.first != endInfo.first || in canRemoveRange() 315 beginInfo.second > endInfo.second) in canRemoveRange() 319 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 | 2438 virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0; 2439 virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0; 8065 void sectionEnded( SectionEndInfo const& endInfo ) override; 8066 void sectionEndedEarly( SectionEndInfo const& endInfo ) override; 12650 void RunContext::sectionEnded(SectionEndInfo const & endInfo) { in sectionEnded() argument 12651 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded() 12659 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded() 12664 void RunContext::sectionEndedEarly(SectionEndInfo const & endInfo) { in sectionEndedEarly() argument 12671 m_unfinishedSections.push_back(endInfo); in sectionEndedEarly() 12975 SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() }; in ~Section() local [all …]
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 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 [all …]
|