Lines Matching refs:rstream
63 class rstream : public _rstream { class
65 template <class T> inline rstream &doRead(T &x) { in doRead()
85 rstream(const char *buf, streamsize size) in rstream() function in rstream
89 rstream(const char *fileName) : _rstream(getBuf(fileName)) {} in rstream() function in rstream
90 rstream &operator>>(int &x) { return doRead(x); } in operator >>()
91 rstream &operator>>(unsigned &x) { return doRead(x); } in operator >>()
92 rstream &operator>>(short &x) { return doRead(x); } in operator >>()
93 rstream &operator>>(unsigned short &x) { return doRead(x); } in operator >>()
94 rstream &operator>>(Symbol &e) { in operator >>()
136 StringTable(rstream &f) { in StringTable()
242 rstream f(fileName); in computeExternalSymbols()
298 rstream in(fileName); in hideSymbols()