Home
last modified time | relevance | path

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

/third_party/boost/libs/beast/test/extern/zlib-1.2.11/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 …]
/third_party/zlib/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 …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/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 …]
/third_party/boost/boost/
Dprogress.hpp44 : timer(), noncopyable(), m_os(os) {} in progress_timer()
54 std::istream::fmtflags old_flags = m_os.setf( std::istream::fixed, in ~progress_timer()
56 std::streamsize old_prec = m_os.precision( 2 ); in ~progress_timer()
57 m_os << elapsed() << " s\n" // "s" is System International d'Unites std in ~progress_timer()
59 m_os.flags( old_flags ); in ~progress_timer()
60 m_os.precision( old_prec ); in ~progress_timer()
67 std::ostream & m_os; member in boost::progress_timer
89 : noncopyable(), m_os(os), m_s1(s1), m_s2(s2), m_s3(s3) { restart(expected_count_); } in progress_display()
98 m_os << m_s1 << "0% 10 20 30 40 50 60 70 80 90 100%\n" in restart()
119 std::ostream & m_os; // may not be present in all imps member in boost::progress_display
[all …]
/third_party/boost/libs/serialization/example/
Dsimple_log_archive.hpp44 std::ostream & m_os; member in simple_log_archive
51 ar.m_os << static_cast<int>(t); in invoke()
58 ar.m_os << t; in invoke()
94 m_os << "wide string types not suported in log archive"; in save()
115 m_os << "save_binary not implemented"; in save_binary()
121 m_os << ' '; in operator <<()
127 m_os << " ->"; in operator <<()
129 m_os << " null"; in operator <<()
143 m_os << '\n'; // start line with each named object in operator <<()
146 m_os << ' '; in operator <<()
[all …]
/third_party/boost/boost/test/impl/
Dunit_test_main.ipp58 …explicit hrf_content_reporter( std::ostream& os ) : m_os( os ), m_indent( -4 ) {} // skip m…
63 m_os << std::setw( m_indent ) << "" << tu.p_name;
64 m_os << (tu.p_default_status == test_unit::RS_ENABLED ? "*" : " ");
65 //m_os << '[' << tu.p_sibling_rank << ']';
67 m_os << ": " << tu.p_description;
69 m_os << "\n";
85 std::ostream& m_os;
94 explicit dot_content_reporter( std::ostream& os ) : m_os( os ) {}
101 m_os << "tu" << tu.p_id;
103 m_os << (master_ts ? "[shape=ellipse,peripheries=2" : "[shape=Mrecord" );
[all …]
Dprogress_monitor.ipp44 : m_os(os)
51 m_os << "\n0% 10 20 30 40 50 60 70 80 90 100%"
71 m_os << '*' << std::flush;
78 m_os << '*';
80 m_os << std::endl;
92 std::ostream& m_os; // may not be present in all imps
/third_party/boost/libs/timer/src/
Dauto_timers_construction.cpp37 : m_places(places), m_os(&std::cout), m_format(default_fmt) { start(); } in auto_cpu_timer()
40 : m_places(places), m_os(&std::cout), m_format(format) { start(); } in auto_cpu_timer()
43 : m_places(default_places), m_os(&std::cout), m_format(format) { start(); } in auto_cpu_timer()
Dcpu_timer.cpp236 : m_places(places), m_os(&os), m_format(default_fmt) in auto_cpu_timer()
/third_party/boost/boost/timer/
Dtimer.hpp96 : m_places(places), m_os(&os), m_format(format) in auto_cpu_timer()
100 : m_places(default_places), m_os(&os), m_format(format) in auto_cpu_timer()
109 std::ostream& ostream() const { return *m_os; } in ostream()
118 std::ostream* m_os; // stored as ptr so compiler can generate operator= member in boost::timer::auto_cpu_timer
/third_party/boost/libs/graph/example/
Ddave.cpp86 endl_printer(std::ostream& os) : m_os(os) {} in endl_printer()
89 m_os << std::endl; in operator ()()
91 std::ostream& m_os; member
103 edge_printer(PA pa, std::ostream& os) : m_pa(pa), m_os(os) {} in edge_printer()
107 m_os << "(" << get(m_pa, source(x, g)) << "," << get(m_pa, target(x, g)) in operator ()()
111 std::ostream& m_os; member
/third_party/boost/boost/test/utils/
Dsetcolor.hpp307 : m_os( 0 ) in scope_setcolor()
318 : m_os( &os ) in scope_setcolor()
326 if (m_os) { in ~scope_setcolor()
327 *m_os << setcolor(m_is_color_output, &m_state); in ~scope_setcolor()
334 std::ostream* m_os; member
/third_party/boost/boost/numeric/odeint/stepper/detail/
Dgeneric_rk_algorithm.hpp138 std::ostream &m_os; member
141 : m_base( base ) , m_os( os ) in print_butcher()
146 m_os << boost::fusion::at<Index>(m_base).c << " | "; in operator ()()
148 m_os << boost::fusion::at<Index>(m_base).a[i] << " "; in operator ()()
149 m_os << std::endl; in operator ()()
/third_party/boost/boost/geometry/io/svg/
Dsvg_mapper.hpp216 std::ostream& m_os; member
225 : m_os(os) in visitor()
234 … devarianted_svg_map<SvgPoint, Geometry>::apply(m_os, m_style, m_size, geometry, m_strategy); in operator ()()
Dwrite.hpp331 OutputStream& m_os; member
336 : m_os(os) in visitor()
344 devarianted_svg<Geometry>::apply(m_os, geometry, m_style, m_size); in operator ()()
/third_party/boost/boost/geometry/io/wkt/
Dwrite.hpp469 OutputStream& m_os; member
473 : m_os(os) in visitor()
480 devarianted_wkt<Geometry>::apply(m_os, geometry, m_force_closure); in operator ()()
/third_party/json/test/thirdparty/doctest/
Ddoctest.h4340 std::ostream& m_os;
4520 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os )
4533 m_os << m_indent << '<' << name;
4550 m_os << "/>";
4554 m_os << m_indent << "</" << m_tags.back() << ">";
4556 m_os << std::endl;
4563 m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"';
4569 m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"';
4574 m_os << ' ' << name << "=\"" << ( attribute ? "true" : "false" ) << '"';
4583 m_os << m_indent;
[all …]