Home | History | Annotate | Download | only in bits

Lines Matching refs:_M_stream

58       istream_type*	_M_stream;
65 : _M_stream(0), _M_value(), _M_ok(false) {}
69 : _M_stream(&__s)
73 : _M_stream(__obj._M_stream), _M_value(__obj._M_value),
112 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream); }
118 _M_ok = (_M_stream && *_M_stream) ? true : false;
121 *_M_stream >> _M_value;
122 _M_ok = *_M_stream ? true : false;
166 ostream_type* _M_stream;
171 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {}
184 : _M_stream(&__s), _M_string(__c) { }
188 : _M_stream(__obj._M_stream), _M_string(__obj._M_string) { }
195 __glibcxx_requires_cond(_M_stream != 0,
198 *_M_stream << __value;
199 if (_M_string) *_M_stream << _M_string;