Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/libstdc++/include/bits/
Dsstream.tcc65 const bool __testout = this->_M_mode & ios_base::out; in _GLIBCXX_BEGIN_NAMESPACE()
88 const bool __testout = this->_M_mode & ios_base::out; in overflow()
140 const bool __testin = this->_M_mode & ios_base::in; in underflow()
158 bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; in seekoff()
159 bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; in seekoff()
205 const bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; in seekpos()
206 const bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; in seekpos()
233 const bool __testin = _M_mode & ios_base::in; in _M_sync()
234 const bool __testout = _M_mode & ios_base::out; in _M_sync()
Dfstream.tcc82 _M_mode(ios_base::openmode(0)), _M_state_beg(), _M_state_cur(), in basic_filebuf()
105 _M_mode = __mode; in open()
145 _M_mode = ios_base::openmode(0); in close()
168 const bool __testin = _M_mode & ios_base::in; in showmanyc()
177 const bool __testbinary = _M_mode & ios_base::binary; in showmanyc()
194 const bool __testin = _M_mode & ios_base::in; in underflow()
343 const bool __testin = _M_mode & ios_base::in; in pbackfail()
396 const bool __testout = _M_mode & ios_base::out; in overflow()
530 const bool __testin = _M_mode & ios_base::in; in xsgetn()
600 const bool __testout = _M_mode & ios_base::out; in xsputn()
[all …]
/freebsd-11-stable/contrib/libstdc++/include/std/
Dstd_sstream.h85 ios_base::openmode _M_mode; in _GLIBCXX_BEGIN_NAMESPACE()
101 : __streambuf_type(), _M_mode(__mode), _M_string() in _GLIBCXX_BEGIN_NAMESPACE()
115 : __streambuf_type(), _M_mode(), _M_string(__str.data(), __str.size()) in _GLIBCXX_BEGIN_NAMESPACE()
156 _M_stringbuf_init(_M_mode); in _GLIBCXX_BEGIN_NAMESPACE()
164 _M_mode = __mode; in _GLIBCXX_BEGIN_NAMESPACE()
166 if (_M_mode & (ios_base::ate | ios_base::app)) in _GLIBCXX_BEGIN_NAMESPACE()
175 if (_M_mode & ios_base::in) in _GLIBCXX_BEGIN_NAMESPACE()
241 const bool __testin = _M_mode & ios_base::in; in _GLIBCXX_BEGIN_NAMESPACE()
Dstd_fstream.h100 ios_base::openmode _M_mode; in _GLIBCXX_BEGIN_NAMESPACE() local
399 const bool __testin = _M_mode & ios_base::in; in _GLIBCXX_BEGIN_NAMESPACE()
400 const bool __testout = _M_mode & ios_base::out; in _GLIBCXX_BEGIN_NAMESPACE()
/freebsd-11-stable/contrib/libstdc++/include/ext/
Dstdio_filebuf.h134 this->_M_mode = __mode; in stdio_filebuf()
151 this->_M_mode = __mode; in stdio_filebuf()
/freebsd-11-stable/contrib/libstdc++/
DChangeLog-1999550 * bits/std_streambuf.h (setp): Set _M_buf_size, _M_mode.
552 (setg): Set _M_mode.
715 * bits/sstream.tcc (seekpos): Tricks, mostly: check _M_mode before
3067 * bits/std_fstream.h: More _M_mode refinements.
3074 * bits/std_fstream.h: Fix _M_mode AND with ios_base::openmode.
3090 * bits/std_sstream.h: Move _M_mode down into base class
DChangeLog-20033958 * include/std/std_streambuf.h (_M_mode): Unused by streambuf, move
3960 (~basic_streambuf()): Don't set _M_mode.
3961 (basic_streambuf()): Don't set _M_mode.
3962 * include/std/std_fstream.h (_M_mode): Move here, from streambuf.
3964 * include/bits/fstream.tcc (basic_filebuf()): Set _M_mode.
3965 * include/std/std_sstream.h (_M_mode): Move here, from streambuf.
3966 * testsuite/27_io/basic_streambuf/cons/char/1.cc: Don't set _M_mode.
5307 * include/std/std_streambuf.h (setg, setp): Don't touch _M_mode.
DChangeLog-20052675 Remove unnecessary this->_M_mode decoration.
5344 _M_buf_size, _M_mode, _M_pback_init.
DChangeLog-20043410 * include/std/std_sstream.h: Same, for _M_mode.