Lines Matching refs:pStrm
54 SvStream* pStrm; // eigentlicher Stream member in swstreambase
67 SvStream& Strm() { return *pStrm; } in Strm()
77 void seek( long nPos ) { pStrm->Seek( nPos ); } in seek()
78 long tell() { return pStrm->Tell(); } in tell()
82 int good() { return ( pStrm->GetError() == SVSTREAM_OK ); } in good()
83 int operator!() { return ( pStrm->GetError() != SVSTREAM_OK ); } in operator !()
84 int eof() { return pStrm->IsEof(); } in eof()
87 void get( void* p, sal_uInt16 n ) { pStrm->Read( (sal_Char*) p, n ); } in get()
99 *pStrm >> c; return *this; in operator >>()
104 *pStrm >> c; return *this; in operator >>()
109 *pStrm >> c; return *this; in operator >>()
114 *pStrm >> c; return *this; in operator >>()