Home | History | Annotate | Download | only in processor

Lines Matching defs:stream_

50     : stream_(which) {}
53 : stream_(str, which) {}
56 : stream_(string(str, size), which) {}
72 bool eof() const { return stream_.eof(); }
73 void clear() { stream_.clear(); }
74 string str() const { return stream_.str(); }
75 void str(const string &s) { stream_.str(s); }
79 stream_.seekg (0, ios::beg);
80 stream_.seekp (0, ios::beg);
83 stream_.clear();
87 std::stringstream stream_;