Home | History | Annotate | Download | only in io

Lines Matching full:stream

37 operator<<(STD_OSTREAM& stream, const UnicodeString& str)
58 stream << buffer;
65 /* stream.flush();*/
66 return stream;
70 operator>>(STD_ISTREAM& stream, UnicodeString& str)
73 if (stream.fail()) {
74 return stream;
97 ch = stream.get();
98 if (stream.eof()) {
101 stream.clear(stream.eofbit);
117 stream.clear(stream.failbit);
131 stream.putback(buffer[--idx]);
143 actually read from the stream.
161 /* stream.flush();*/
162 return stream;