Lines Matching defs:stream
40 operator<<(STD_OSTREAM& stream, const UnicodeString& str)
61 stream << buffer;
68 /* stream.flush();*/
69 return stream;
73 operator>>(STD_ISTREAM& stream, UnicodeString& str)
76 if (stream.fail()) {
77 return stream;
100 ch = stream.get();
101 if (stream.eof()) {
104 stream.clear(stream.eofbit);
120 stream.clear(stream.failbit);
134 stream.putback(buffer[--idx]);
146 actually read from the stream.
164 /* stream.flush();*/
165 return stream;