Searched defs:SectionNode (Results 1 – 3 of 3) sorted by relevance
108 struct SectionNode { struct109 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() function112 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 …]
8601 struct SectionNode : SharedImpl<> { struct8602 explicit SectionNode( SectionStats const& _stats ) : stats( _stats ) {} in SectionNode() function8605 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 …]
5165 struct SectionNode { struct5166 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() argument5169 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 …]