Home
last modified time | relevance | path

Searched refs:tellg (Results 1 – 10 of 10) sorted by relevance

/external/stlport/test/unit/
Dsstream_test.cpp390 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(0) ); in seek()
392 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(6) ); in seek()
394 CPPUNIT_ASSERT( s.tellg() == stringstream::pos_type(3) ); in seek()
397 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(0) ); in seek()
399 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(6) ); in seek()
401 CPPUNIT_ASSERT( is.tellg() == stringstream::pos_type(3) ); in seek()
Dfstream_test.cpp43 CPPUNIT_TEST(tellg);
73 void tellg();
210 void FstreamTest::tellg() in tellg() function in FstreamTest
235 CPPUNIT_ASSERT( is.tellg() == p ); in tellg()
251 is.tellg(); in tellg()
252 CPPUNIT_ASSERT( is.tellg() == p ); in tellg()
266 CPPUNIT_ASSERT( is.tellg() == p ); in tellg()
Dcodecvt_test.cpp314 CPPUNIT_ASSERT( (int)istr.tellg() == 0 ); in variable_encoding()
327 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalPos ); in variable_encoding()
348 CPPUNIT_ASSERT( (int)istr.tellg() == 0 ); in variable_encoding()
370 if ((int)istr.tellg() != theoricalTellg) { in variable_encoding()
371 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalTellg ); in variable_encoding()
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dconst-fst.h174 for (int i = 0; i < kFileAlign && strm.tellg() % kFileAlign; ++i) in Read()
185 for (int i = 0; i < kFileAlign && strm.tellg() % kFileAlign; ++i) in Read()
/external/chromium/third_party/icu/source/tools/tzcode/
Dtz2icu.cpp561 int64_t eofPos = (int64_t) file.tellg(); in handleFile()
578 eofPos = (int64_t) file.tellg(); in handleFile()
580 eofPos = eofPos - (int64_t) file.tellg(); in handleFile()
596 int64_t eofPos = (int64_t) file.tellg(); in handleFile()
600 eofPos = eofPos - (int64_t) file.tellg(); in handleFile()
/external/stlport/stlport/stl/
D_istream.h163 pos_type tellg();
D_istream.c494 basic_istream<_CharT, _Traits>::tellg() { in tellg() function
/external/icu4c/tools/tzcode/
Dtz2icu.cpp563 int64_t eofPos = (int64_t) file.tellg(); in handleFile()
580 eofPos = (int64_t) file.tellg(); in handleFile()
582 eofPos = eofPos - (int64_t) file.tellg(); in handleFile()
/external/stlport/etc/
DChangeLog-4.0102 * _fstream.c : fixed tellg() bug in text mode
DChangeLog-5.16562 * test/unit/fstream_test.cpp: test for correct report by tellg added.