Lines Matching refs:XmlWriter
160 XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer ) in ScopedElement()
164 XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) noexcept in ScopedElement()
168 … XmlWriter::ScopedElement& XmlWriter::ScopedElement::operator=( ScopedElement&& other ) noexcept { in operator =()
178 XmlWriter::ScopedElement::~ScopedElement() { in ~ScopedElement()
183 …XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, bool inden… in writeText()
188 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) in XmlWriter() function in Catch::XmlWriter
193 XmlWriter::~XmlWriter() { in ~XmlWriter()
198 XmlWriter& XmlWriter::startElement( std::string const& name ) { in startElement()
208 XmlWriter::ScopedElement XmlWriter::scopedElement( std::string const& name ) { in scopedElement()
214 XmlWriter& XmlWriter::endElement() { in endElement()
229 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute()
235 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute()
240 XmlWriter& XmlWriter::writeText( std::string const& text, bool indent ) { in writeText()
252 XmlWriter& XmlWriter::writeComment( std::string const& text ) { in writeComment()
259 void XmlWriter::writeStylesheetRef( std::string const& url ) { in writeStylesheetRef()
263 XmlWriter& XmlWriter::writeBlankLine() { in writeBlankLine()
269 void XmlWriter::ensureTagClosed() { in ensureTagClosed()
276 void XmlWriter::writeDeclaration() { in writeDeclaration()
280 void XmlWriter::newlineIfNecessary() { in newlineIfNecessary()