Lines Matching refs:XmlWriter
8909 class XmlWriter { class
8914 ScopedElement( XmlWriter* writer ) in ScopedElement()
8940 mutable XmlWriter* m_writer;
8943 XmlWriter() in XmlWriter() function in Catch::XmlWriter
8949 XmlWriter( std::ostream& os ) in XmlWriter() function in Catch::XmlWriter
8955 ~XmlWriter() { in ~XmlWriter()
8960 XmlWriter& startElement( std::string const& name ) { in startElement()
8976 XmlWriter& endElement() { in endElement()
8990 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute()
8996 XmlWriter& writeAttribute( std::string const& name, bool attribute ) { in writeAttribute()
9002 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute()
9008 XmlWriter& writeText( std::string const& text, bool indent = true ) { in writeText()
9020 XmlWriter& writeComment( std::string const& text ) { in writeComment()
9027 XmlWriter& writeBlankLine() { in writeBlankLine()
9038 XmlWriter( XmlWriter const& );
9039 void operator=( XmlWriter const& );
9211 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResults" ); in sectionEnded()
9225 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResult" ); in testCaseEnded()
9255 XmlWriter m_xml;
9323 XmlWriter::ScopedElement e = xml.scopedElement( "testsuite" ); in writeGroup()
9374 XmlWriter::ScopedElement e = xml.scopedElement( "testcase" ); in writeSection()
9440 XmlWriter::ScopedElement e = xml.scopedElement( elementName ); in writeAssertion()
9461 XmlWriter xml;