Lines Matching refs:rInput

177 				Reference < XDataInputStream > rInput( TestObject , UNO_QUERY );  in test()  local
190 rInput = Reference < XDataInputStream > ( x , UNO_QUERY); in test()
210 testSimple( rInput , rOutput ); in test()
262 void ODataStreamTest::testSimple( const Reference < XDataInputStream > &rInput, in testSimple() argument
269 ERROR_ASSERT( 0x34ff3c == rInput->readLong() , "long read/write mismatch" ); in testSimple()
270 ERROR_ASSERT( 0x34ff3d == rInput->readLong() , "long read/write mismatch" ); in testSimple()
271 ERROR_ASSERT( -1027 == rInput->readLong() , "long read/write mismatch" ); in testSimple()
274 ERROR_ASSERT( 0x77 == rInput->readByte() , "byte read/write mismatch" ); in testSimple()
277 ERROR_ASSERT( rInput->readBoolean() , "boolean read/write mismatch" ); in testSimple()
280 ERROR_ASSERT( ! rInput->readBoolean() , "boolean read/write mismatch" ); in testSimple()
283 ERROR_ASSERT( rInput->readFloat() == ((float)42.42) , "float read/write mismatch" ); in testSimple()
286 ERROR_ASSERT( rInput->readDouble() == 42.42 , "double read/write mismatch" ); in testSimple()
289 ERROR_ASSERT( rInput->readHyper() == 0x123456789abcdefLL , "int64 read/write mismatch" ); in testSimple()
292 ERROR_ASSERT( rInput->readUTF() == OUString::createFromAscii("Live long and prosper !") , in testSimple()
302 ERROR_ASSERT( rInput->readUTF() == str , "error reading 64k block" ); in testSimple()
307 rInput->readLong(); in testSimple()
320 ERROR_ASSERT( ! rInput->readBytes( dummy , 1 ), in testSimple()
323 rInput->closeInput(); in testSimple()
749 Reference< XObjectInputStream > rInput( TestObject , UNO_QUERY ); in test() local
781 rInput = Reference < XObjectInputStream > ( x , UNO_QUERY ); in test()
801 testObject( rOutput , rInput); in test()
803 rInput->closeInput(); in test()