Lines Matching refs:XmlWriter

6183     class XmlWriter {  class
6188 ScopedElement( XmlWriter* writer, XmlFormatting fmt );
6204 mutable XmlWriter* m_writer = nullptr;
6208 XmlWriter( std::ostream& os = Catch::cout() );
6209 ~XmlWriter();
6211 XmlWriter( XmlWriter const& ) = delete;
6212 XmlWriter& operator=( XmlWriter const& ) = delete;
6214XmlWriter& startElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | Xml…
6218 XmlWriter& endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6220 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
6222 XmlWriter& writeAttribute( std::string const& name, bool attribute );
6225 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute()
6231XmlWriter& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6233XmlWriter& writeComment(std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlF…
6237 XmlWriter& writeBlankLine();
6295 XmlWriter xml;
6354 XmlWriter m_xml;
15271 XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer, XmlFormatting fmt ) in ScopedElement()
15276 XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) noexcept in ScopedElement()
15283XmlWriter::ScopedElement& XmlWriter::ScopedElement::operator=( ScopedElement&& other ) noexcept { in operator =()
15294 XmlWriter::ScopedElement::~ScopedElement() { in ~ScopedElement()
15300XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, XmlFormatt… in writeText()
15305 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) in XmlWriter() function in Catch::XmlWriter
15310 XmlWriter::~XmlWriter() { in ~XmlWriter()
15317 XmlWriter& XmlWriter::startElement( std::string const& name, XmlFormatting fmt ) { in startElement()
15331XmlWriter::ScopedElement XmlWriter::scopedElement( std::string const& name, XmlFormatting fmt ) { in scopedElement()
15337 XmlWriter& XmlWriter::endElement(XmlFormatting fmt) { in endElement()
15356 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute()
15362 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute()
15367 XmlWriter& XmlWriter::writeText( std::string const& text, XmlFormatting fmt) { in writeText()
15380 XmlWriter& XmlWriter::writeComment( std::string const& text, XmlFormatting fmt) { in writeComment()
15390 void XmlWriter::writeStylesheetRef( std::string const& url ) { in writeStylesheetRef()
15394 XmlWriter& XmlWriter::writeBlankLine() { in writeBlankLine()
15400 void XmlWriter::ensureTagClosed() { in ensureTagClosed()
15408 void XmlWriter::applyFormatting(XmlFormatting fmt) { in applyFormatting()
15412 void XmlWriter::writeDeclaration() { in writeDeclaration()
15416 void XmlWriter::newlineIfNecessary() { in newlineIfNecessary()
16557 XmlWriter::ScopedElement e = xml.scopedElement( "testsuite" ); in writeGroup()
16626 XmlWriter::ScopedElement e = xml.scopedElement( "testcase" ); in writeSection()
16686 XmlWriter::ScopedElement e = xml.scopedElement( elementName ); in writeAssertion()
17039 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResults" ); in sectionEnded()
17053 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResult" ); in testCaseEnded()