Home | History | Annotate | Download | only in lib

Lines Matching full:strm

63   static SymbolTableImpl* Read(istream &strm, const string& source);
65 bool Write(ostream &strm) const;
67 bool WriteText(ostream &strm) const;
236 static SymbolTable* Read(istream &strm, const string& source) {
237 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source);
246 ifstream strm(filename.c_str());
247 if (!strm) {
251 return Read(strm, filename);
254 bool Write(ostream &strm) const {
255 return impl_->Write(strm);
259 ofstream strm(filename.c_str());
260 if (!strm) {
264 return Write(strm);
268 bool WriteText(ostream &strm) const {
269 return impl_->WriteText(strm);
274 ofstream strm(filename.c_str());
275 if (!strm) {
279 return WriteText(strm);