Home
last modified time | relevance | path

Searched refs:_sectionStats (Results 1 – 7 of 7) sorted by relevance

/external/catch2/include/reporters/
Dcatch_reporter_compact.cpp277 void CompactReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded() argument
279 …stream << getFormattedDuration(_sectionStats.durationInSeconds) << " s: " << _sectionStats.section… in sectionEnded()
Dcatch_reporter_console.cpp410 void ConsoleReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded() argument
412 if (_sectionStats.missingAssertions) { in sectionEnded()
419 stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl; in sectionEnded()
422 …stream << getFormattedDuration(_sectionStats.durationInSeconds) << " s: " << _sectionStats.section… in sectionEnded()
427 StreamingReporterBase::sectionEnded(_sectionStats); in sectionEnded()
Dcatch_reporter_compact.h33 void sectionEnded(SectionStats const& _sectionStats) override;
Dcatch_reporter_console.h42 void sectionEnded(SectionStats const& _sectionStats) override;
/external/bcc/tests/cc/
Dcatch.hpp9519 virtual void sectionEnded( SectionStats const& _sectionStats ) CATCH_OVERRIDE { in sectionEnded()
9520 if( _sectionStats.missingAssertions ) { in sectionEnded()
9527 stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl; in sectionEnded()
9531 … stream << "Completed in " << _sectionStats.durationInSeconds << "s" << std::endl; in sectionEnded()
9536 …stream << _sectionStats.sectionInfo.name << " completed in " << _sectionStats.durationInSeconds <<… in sectionEnded()
9538 StreamingReporterBase::sectionEnded( _sectionStats ); in sectionEnded()
/external/catch2/single_include/catch2/
Dcatch.hpp6087 void sectionEnded(SectionStats const& _sectionStats) override;
6126 void sectionEnded(SectionStats const& _sectionStats) override;
15781 void CompactReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded() argument
15783 …stream << getFormattedDuration(_sectionStats.durationInSeconds) << " s: " << _sectionStats.section… in sectionEnded()
16192 void ConsoleReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded() argument
16194 if (_sectionStats.missingAssertions) { in sectionEnded()
16201 stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl; in sectionEnded()
16204 …stream << getFormattedDuration(_sectionStats.durationInSeconds) << " s: " << _sectionStats.section… in sectionEnded()
16209 StreamingReporterBase::sectionEnded(_sectionStats); in sectionEnded()
/external/libabigail/tests/lib/
Dcatch.hpp6121 void sectionEnded(SectionStats const& _sectionStats) override;
6160 void sectionEnded(SectionStats const& _sectionStats) override;
16032 void CompactReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded() argument
16033 double dur = _sectionStats.durationInSeconds; in sectionEnded()
16035 … stream << getFormattedDuration( dur ) << " s: " << _sectionStats.sectionInfo.name << std::endl; in sectionEnded()
16444 void ConsoleReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded() argument
16446 if (_sectionStats.missingAssertions) { in sectionEnded()
16453 stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl; in sectionEnded()
16455 double dur = _sectionStats.durationInSeconds; in sectionEnded()
16457 … stream << getFormattedDuration(dur) << " s: " << _sectionStats.sectionInfo.name << std::endl; in sectionEnded()
[all …]