Home
last modified time | relevance | path

Searched defs:SectionNode (Results 1 – 3 of 3) sorted by relevance

/external/catch2/include/reporters/
Dcatch_reporter_bases.hpp111 struct SectionNode { struct
112 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() argument
115 bool operator == (SectionNode const& other) const { in operator ==()
118 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==()
122 SectionStats stats;
123 using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
124 using Assertions = std::vector<AssertionStats>;
125 ChildSections childSections;
126 Assertions assertions;
127 std::string stdOut;
[all …]
/external/bcc/tests/cc/
Dcatch.hpp8601 struct SectionNode : SharedImpl<> { struct
8602 explicit SectionNode( SectionStats const& _stats ) : stats( _stats ) {} in SectionNode() argument
8605 bool operator == ( SectionNode const& other ) const { in operator ==()
8608 bool operator == ( Ptr<SectionNode> const& other ) const { in operator ==()
8612 SectionStats stats;
8613 typedef std::vector<Ptr<SectionNode> > ChildSections;
8614 typedef std::vector<AssertionStats> Assertions;
8615 ChildSections childSections;
8616 Assertions assertions;
8617 std::string stdOut;
[all …]
/external/catch2/single_include/catch2/
Dcatch.hpp5183 struct SectionNode { struct
5184 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() function
5187 bool operator == (SectionNode const& other) const { in operator ==()
5190 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==()
5194 SectionStats stats;
5195 using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
5196 using Assertions = std::vector<AssertionStats>;
5197 ChildSections childSections;
5198 Assertions assertions;
5199 std::string stdOut;
[all …]