Home
last modified time | relevance | path

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

/external/catch2/include/reporters/
Dcatch_reporter_bases.hpp108 struct SectionNode { struct
109 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() function
112 bool operator == (SectionNode const& other) const { in operator ==()
115 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==()
119 SectionStats stats;
120 using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
121 using Assertions = std::vector<AssertionStats>;
122 ChildSections childSections;
123 Assertions assertions;
124 std::string stdOut;
[all …]
/external/bcc/tests/cc/
Dcatch.hpp8601 struct SectionNode : SharedImpl<> { struct
8602 explicit SectionNode( SectionStats const& _stats ) : stats( _stats ) {} in SectionNode() function
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.hpp5165 struct SectionNode { struct
5166 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() argument
5169 bool operator == (SectionNode const& other) const { in operator ==()
5172 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==()
5176 SectionStats stats;
5177 using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
5178 using Assertions = std::vector<AssertionStats>;
5179 ChildSections childSections;
5180 Assertions assertions;
5181 std::string stdOut;
[all …]