• Home
  • Raw
  • Download

Lines Matching refs:XmlWriter

6238     class XmlWriter {  class
6243 ScopedElement( XmlWriter* writer, XmlFormatting fmt );
6259 mutable XmlWriter* m_writer = nullptr;
6263 XmlWriter( std::ostream& os = Catch::cout() );
6264 ~XmlWriter();
6266 XmlWriter( XmlWriter const& ) = delete;
6267 XmlWriter& operator=( XmlWriter const& ) = delete;
6269XmlWriter& startElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | Xml…
6273 XmlWriter& endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6275 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
6277 XmlWriter& writeAttribute( std::string const& name, bool attribute );
6280 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute()
6286XmlWriter& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6288XmlWriter& writeComment(std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlF…
6292 XmlWriter& writeBlankLine();
6350 XmlWriter xml;
6409 XmlWriter m_xml;
15544 XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer, XmlFormatting fmt ) in ScopedElement()
15549 XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) noexcept in ScopedElement()
15556XmlWriter::ScopedElement& XmlWriter::ScopedElement::operator=( ScopedElement&& other ) noexcept { in operator =()
15567 XmlWriter::ScopedElement::~ScopedElement() { in ~ScopedElement()
15573XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, XmlFormatt… in writeText()
15578 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) in XmlWriter() function in Catch::XmlWriter
15583 XmlWriter::~XmlWriter() { in ~XmlWriter()
15590 XmlWriter& XmlWriter::startElement( std::string const& name, XmlFormatting fmt ) { in startElement()
15604XmlWriter::ScopedElement XmlWriter::scopedElement( std::string const& name, XmlFormatting fmt ) { in scopedElement()
15610 XmlWriter& XmlWriter::endElement(XmlFormatting fmt) { in endElement()
15629 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute()
15635 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute()
15640 XmlWriter& XmlWriter::writeText( std::string const& text, XmlFormatting fmt) { in writeText()
15653 XmlWriter& XmlWriter::writeComment( std::string const& text, XmlFormatting fmt) { in writeComment()
15663 void XmlWriter::writeStylesheetRef( std::string const& url ) { in writeStylesheetRef()
15667 XmlWriter& XmlWriter::writeBlankLine() { in writeBlankLine()
15673 void XmlWriter::ensureTagClosed() { in ensureTagClosed()
15681 void XmlWriter::applyFormatting(XmlFormatting fmt) { in applyFormatting()
15685 void XmlWriter::writeDeclaration() { in writeDeclaration()
15689 void XmlWriter::newlineIfNecessary() { in newlineIfNecessary()
16837 XmlWriter::ScopedElement e = xml.scopedElement( "testsuite" ); in writeGroup()
16906 XmlWriter::ScopedElement e = xml.scopedElement( "testcase" ); in writeSection()
16967 XmlWriter::ScopedElement e = xml.scopedElement( elementName ); in writeAssertion()
17320 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResults" ); in sectionEnded()
17334 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResult" ); in testCaseEnded()