Lines Matching refs:m_os
6308 std::ostream& m_os; member in Catch::XmlWriter
13646 mutable std::ostream m_os; member in Catch::Detail::__anon9bf70de83b11::CoutStream
13650 CoutStream() : m_os( Catch::cout().rdbuf() ) {} in CoutStream()
13654 std::ostream& stream() const override { return m_os; } in stream()
13661 mutable std::ostream m_os; member in Catch::Detail::__anon9bf70de83b11::DebugOutStream
13665 m_os( m_streamBuf.get() ) in DebugOutStream()
13671 std::ostream& stream() const override { return m_os; } in stream()
15578 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) in XmlWriter()
15594 m_os << m_indent; in startElement()
15597 m_os << '<' << name; in startElement()
15614 m_os << "/>"; in endElement()
15619 m_os << m_indent; in endElement()
15621 m_os << "</" << m_tags.back() << ">"; in endElement()
15623 m_os << std::flush; in endElement()
15631 m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"'; in writeAttribute()
15636 m_os << ' ' << name << "=\"" << ( attribute ? "true" : "false" ) << '"'; in writeAttribute()
15645 m_os << m_indent; in writeText()
15647 m_os << XmlEncode( text ); in writeText()
15656 m_os << m_indent; in writeComment()
15658 m_os << "<!--" << text << "-->"; in writeComment()
15664 m_os << "<?xml-stylesheet type=\"text/xsl\" href=\"" << url << "\"?>\n"; in writeStylesheetRef()
15669 m_os << '\n'; in writeBlankLine()
15675 m_os << '>' << std::flush; in ensureTagClosed()
15686 m_os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; in writeDeclaration()
15691 m_os << std::endl; in newlineIfNecessary()
16307 std::ostream& m_os; member in Catch::TablePrinter
16315 : m_os( os ), in TablePrinter()
16333 m_os << headerCols << '\n'; in open()
16335 m_os << Catch::getLineOfChars<'-'>() << '\n'; in open()
16341 m_os << std::endl; in close()
16359 tp.m_os << '\n'; in operator <<()
16368 tp.m_os << colStr << padding << ' '; in operator <<()
16370 tp.m_os << padding << colStr << ' '; in operator <<()
16376 tp.m_os << '\n'; in operator <<()