Lines Matching refs:m_os
4686 std::ostream& m_os;
4866 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os )
4879 m_os << m_indent << '<' << name;
4896 m_os << "/>";
4900 m_os << m_indent << "</" << m_tags.back() << ">";
4902 m_os << std::endl;
4909 m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"';
4915 m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"';
4920 m_os << ' ' << name << "=\"" << ( attribute ? "true" : "false" ) << '"';
4929 m_os << m_indent;
4930 m_os << XmlEncode( text );
4938 // m_os << m_indent << "<!--" << text << "-->";
4944 // m_os << "<?xml-stylesheet type=\"text/xsl\" href=\"" << url << "\"?>\n";
4949 // m_os << '\n';
4955 m_os << ">" << std::endl;
4961 m_os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
4966 m_os << std::endl;