Home | History | Annotate | Download | only in bits

Lines Matching refs:_M_stream

51       istream_type*	_M_stream;
58 : _M_stream(0), _M_value(), _M_ok(false) {}
62 : _M_stream(&__s)
66 : _M_stream(__obj._M_stream), _M_value(__obj._M_value),
105 { return (_M_ok == __x._M_ok) && (!_M_ok || _M_stream == __x._M_stream); }
111 _M_ok = (_M_stream && *_M_stream) ? true : false;
114 *_M_stream >> _M_value;
115 _M_ok = *_M_stream ? true : false;
159 ostream_type* _M_stream;
164 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {}
177 : _M_stream(&__s), _M_string(__c) { }
181 : _M_stream(__obj._M_stream), _M_string(__obj._M_string) { }
188 __glibcxx_requires_cond(_M_stream != 0,
191 *_M_stream << __value;
192 if (_M_string) *_M_stream << _M_string;