Home | History | Annotate | Download | only in bits

Lines Matching refs:__out

42     __ostream_write(basic_ostream<_CharT, _Traits>& __out,
48 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
50 __out.setstate(__ios_base::badbit);
55 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n)
60 const _CharT __c = __out.fill();
63 const typename _Traits::int_type __put = __out.rdbuf()->sputc(__c);
66 __out.setstate(__ios_base::badbit);
74 __ostream_insert(basic_ostream<_CharT, _Traits>& __out,
80 typename __ostream_type::sentry __cerb(__out);
85 const streamsize __w = __out.width();
88 const bool __left = ((__out.flags()
92 __ostream_fill(__out, __w - __n);
93 if (__out.good())
94 __ostream_write(__out, __s, __n);
95 if (__left && __out.good())
96 __ostream_fill(__out, __w - __n);
99 __ostream_write(__out, __s, __n);
100 __out.width(0);
104 __out._M_setstate(__ios_base::badbit);
108 { __out._M_setstate(__ios_base::badbit); }
110 return __out;