Home | History | Annotate | Download | only in unit

Lines Matching refs:stringstream

145   stringstream s;
175 stringstream s( "9" );
189 stringstream s( "9" );
203 stringstream s;
289 stringstream ss;
315 stringstream ss;
388 stringstream s( "0123456789" );
390 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(0) );
392 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(6) );
394 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(3) );
397 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(0) );
399 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(6) );
401 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(3) );
409 CPPUNIT_CHECK( s.tellp() == stringstream::pos_type(7) );
421 stringstream ss( "1" );
451 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) );
452 CPPUNIT_CHECK( o.tellp() == stringstream::pos_type(6) );
459 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(6) );
460 CPPUNIT_CHECK( o.tellp() == stringstream::pos_type(6) );
467 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == stringstream::pos_type(9) );
468 CPPUNIT_CHECK( o.tellp() == stringstream::pos_type(9) );