HomeSort by relevance Sort by last modified time
    Searched refs:sectionStats (Results 1 - 11 of 11) sorted by null

  /external/catch2/include/reporters/
catch_reporter_listening.cpp 102 void ListeningReporter::sectionEnded( SectionStats const& sectionStats ) {
104 listener->sectionEnded( sectionStats );
106 m_reporter->sectionEnded( sectionStats );
catch_reporter_xml.h 45 void sectionEnded(SectionStats const& sectionStats) override;
catch_reporter_xml.cpp 170 void XmlReporter::sectionEnded( SectionStats const& sectionStats ) {
171 StreamingReporterBase::sectionEnded( sectionStats );
174 e.writeAttribute( "successes", sectionStats.assertions.passed );
175 e.writeAttribute( "failures", sectionStats.assertions.failed );
176 e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk );
179 e.writeAttribute( "durationInSeconds", sectionStats.durationInSeconds );
catch_reporter_listening.h 45 void sectionEnded( SectionStats const& sectionStats ) override;
catch_reporter_bases.hpp 66 void sectionEnded(SectionStats const& /* _sectionStats */) override {
109 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {}
119 SectionStats stats;
170 SectionStats incompleteStats( sectionInfo, Counts(), 0, false );
208 void sectionEnded(SectionStats const& sectionStats) override {
211 node.stats = sectionStats;
  /external/catch2/include/internal/
catch_interfaces_reporter.h 92 struct SectionStats {
93 SectionStats( SectionInfo const& _sectionInfo,
97 SectionStats( SectionStats const& ) = default;
98 SectionStats( SectionStats && ) = default;
99 SectionStats& operator = ( SectionStats const& ) = default;
100 SectionStats& operator = ( SectionStats && ) = default
    [all...]
  /frameworks/base/cmds/incidentd/src/
Reporter.h 194 void endSection(IncidentMetadata::SectionStats* sectionStats);
235 * Fields for IncidentMetadata.SectionStats. Set by setSectionStats. Accessed by
Reporter.cpp 87 const IncidentMetadata::SectionStats& sectionStats = full.sections(sectionIndex);
88 if (contains_section(args, sectionStats.id())) {
89 *result->add_sections() = sectionStats;
379 void ReportWriter::endSection(IncidentMetadata::SectionStats* sectionMetadata) {
591 IncidentMetadata::SectionStats* sectionMetadata = metadata.add_sections();
  /external/catch2/examples/
210-Evt-EventListeners.cpp 194 // struct SectionStats {
201 void print( std::ostream& os, int const level, std::string const& title, Catch::SectionStats const& info ) {
352 virtual void sectionEnded( Catch::SectionStats const& sectionStats ) override {
354 print( std::cout, 1, "- sectionStats", sectionStats );
  /external/bcc/tests/cc/
catch.hpp     [all...]
  /external/catch2/single_include/catch2/
catch.hpp     [all...]

Completed in 878 milliseconds