Home
last modified time | relevance | path

Searched refs:m_os (Results 1 – 9 of 9) sorted by relevance

/external/zlib/src/contrib/iostream2/
Dzstream.h158 ozstream() : m_fp(0), m_os(0) { in ozstream()
161 : m_fp(0), m_os(0) {
165 : m_fp(0), m_os(0) {
199 if (m_os) { in close()
200 ::gzwrite(m_fp, m_os->str(), m_os->pcount()); in close()
201 delete[] m_os->str(); delete m_os; m_os = 0; in close() local
237 if (m_os == 0) m_os = new ostrstream; in os()
238 return *m_os; in os()
242 if (m_os && m_os->pcount()>0) { in os_flush()
244 oss->fill(m_os->fill()); in os_flush()
[all …]
/external/catch2/include/internal/
Dcatch_xmlwriter.cpp188 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) in XmlWriter()
201 m_os << m_indent << '<' << name; in startElement()
218 m_os << "/>"; in endElement()
222 m_os << m_indent << "</" << m_tags.back() << ">"; in endElement()
224 m_os << std::endl; in endElement()
231 m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"'; in writeAttribute()
236 m_os << ' ' << name << "=\"" << ( attribute ? "true" : "false" ) << '"'; in writeAttribute()
245 m_os << m_indent; in writeText()
246 m_os << XmlEncode( text ); in writeText()
254 m_os << m_indent << "<!--" << text << "-->"; in writeComment()
[all …]
Dcatch_stream.cpp93 mutable std::ostream m_os; member in Catch::detail::__anon0d984efc0111::CoutStream
97 CoutStream() : m_os( Catch::cout().rdbuf() ) {} in CoutStream()
101 std::ostream& stream() const override { return m_os; } in stream()
108 mutable std::ostream m_os; member in Catch::detail::__anon0d984efc0111::DebugOutStream
112 m_os( m_streamBuf.get() ) in DebugOutStream()
118 std::ostream& stream() const override { return m_os; } in stream()
Dcatch_xmlwriter.h100 std::ostream& m_os; variable
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DWriterToASCI.java43 private final OutputStream m_os; field in WriterToASCI
53 m_os = os; in WriterToASCI()
75 m_os.write(chars[i]); in write()
92 m_os.write(c); in write()
107 m_os.write(s.charAt(i)); in write()
122 m_os.flush(); in flush()
134 m_os.close(); in close()
145 return m_os; in getOutputStream()
DWriterToUTF8Buffered.java55 private final OutputStream m_os; field in WriterToUTF8Buffered
83 m_os = out; in WriterToUTF8Buffered()
447 m_os.write(m_outputBytes, 0, count); in flushBuffer()
467 m_os.flush(); in flush()
482 m_os.close(); in close()
493 return m_os; in getOutputStream()
/external/catch2/include/reporters/
Dcatch_reporter_console.cpp267 std::ostream& m_os; member in Catch::TablePrinter
275 : m_os( os ), in TablePrinter()
289 m_os << Catch::getLineOfChars<'-'>() << "\n"; in open()
295 m_os << std::endl; in close()
314 tp.m_os << "\n"; in operator <<()
323 tp.m_os << colStr << padding << " "; in operator <<()
325 tp.m_os << padding << colStr << " "; in operator <<()
331 tp.m_os << "\n"; in operator <<()
/external/catch2/single_include/catch2/
Dcatch.hpp5648 std::ostream& m_os; member in Catch::XmlWriter
11240 mutable std::ostream m_os; member in Catch::detail::__anondb8a344f1c11::CoutStream
11244 CoutStream() : m_os( Catch::cout().rdbuf() ) {} in CoutStream()
11248 std::ostream& stream() const override { return m_os; } in stream()
11255 mutable std::ostream m_os; member in Catch::detail::__anondb8a344f1c11::DebugOutStream
11259 m_os( m_streamBuf.get() ) in DebugOutStream()
11265 std::ostream& stream() const override { return m_os; } in stream()
12892 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) in XmlWriter()
12905 m_os << m_indent << '<' << name; in startElement()
12922 m_os << "/>"; in endElement()
[all …]
/external/bcc/tests/cc/
Dcatch.hpp3443 mutable std::ostream m_os; member in Catch::CoutStream
3454 mutable std::ostream m_os; member in Catch::DebugOutStream
6842 m_os( m_streamBuf.get() ) in DebugOutStream()
6846 return m_os; in stream()
6852 : m_os( Catch::cout().rdbuf() ) in CoutStream()
6856 return m_os; in stream()
8946 m_os( &Catch::cout() ) in XmlWriter()
8952 m_os( &os ) in XmlWriter()
9034 m_os = &os; in setStream()
9042 return *m_os; in stream()
[all …]