Lines Matching refs:rStream

83     OStream(IPositionableStream& rStream);	
167 friend const OStream& operator>> (OStream& rStream, sal_Int32& value);
168 friend const OStream& operator>> (OStream& rStream, sal_Int16& value);
169 friend const OStream& operator>> (OStream& rStream, sal_uInt8& value);
170 friend const OStream& operator>> (OStream& rStream, sal_Char& value);
171 friend OStream& operator<< (OStream& rStream, sal_Int32 value);
172 friend OStream& operator<< (OStream& rStream, sal_Int16 value);
173 friend OStream& operator<< (OStream& rStream, sal_uInt8 value);
174 friend OStream& operator<< (OStream& rStream, sal_Char value);
222 inline const OStream& operator>> (OStream& rStream, sal_Int32& value) in operator >>() argument
224 rStream.read(value); in operator >>()
226 return (rStream); in operator >>()
229 inline const OStream& operator>> (OStream& rStream, sal_Int16& value) in operator >>() argument
231 rStream.read(value); in operator >>()
233 return (rStream); in operator >>()
236 inline const OStream& operator>> (OStream& rStream, sal_uInt8& value) in operator >>() argument
238 rStream.read(value); in operator >>()
240 return (rStream); in operator >>()
243 inline const OStream& operator>> (OStream& rStream, sal_Char& value) in operator >>() argument
245 rStream.read(value); in operator >>()
247 return (rStream); in operator >>()
250 inline OStream& operator<< (OStream& rStream, sal_Int32 value) in operator <<() argument
252 rStream.write(value); in operator <<()
254 return (rStream); in operator <<()
257 inline OStream& operator<< (OStream& rStream, sal_Int16 value) in operator <<() argument
259 rStream.write(value); in operator <<()
261 return (rStream); in operator <<()
264 inline OStream& operator<< (OStream& rStream, sal_uInt8 value) in operator <<() argument
266 rStream.write(value); in operator <<()
268 return (rStream); in operator <<()
271 inline OStream& operator<< (OStream& rStream, sal_Char value) in operator <<() argument
273 rStream.write(value); in operator <<()
275 return (rStream); in operator <<()