HomeSort by relevance Sort by last modified time
    Searched full:tellg (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
tellg.pass.cpp 12 // pos_type tellg();
56 assert(is.tellg() == 5);
61 assert(is.tellg() == 5);
ignore_0xff.pass.cpp 33 size_t a=is.tellg();
35 size_t b=is.tellg();
Android.mk 83 test_name := input.output/iostream.format/input.streams/istream.unformatted/tellg
84 test_src := tellg.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
tellg.pass.cpp 12 // pos_type tellg();
56 assert(is.tellg() == 5);
61 assert(is.tellg() == 5);
ignore_0xff.pass.cpp 30 size_t a=is.tellg();
32 size_t b=is.tellg();
  /external/stlport/test/unit/
sstream_test.cpp 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) );
fstream_test.cpp 43 CPPUNIT_TEST(tellg);
73 void tellg();
210 void FstreamTest::tellg() function in class:FstreamTest
230 // CPPUNIT_ASSERT( is.tellg() == 0 );
235 CPPUNIT_ASSERT( is.tellg() == p );
251 is.tellg();
252 CPPUNIT_ASSERT( is.tellg() == p );
266 CPPUNIT_ASSERT( is.tellg() == p );
codecvt_test.cpp 145 * buffer (tellg -> -1), when you just read a 'a' you are at an undefined
314 CPPUNIT_ASSERT( (int)istr.tellg() == 0 );
327 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalPos );
348 CPPUNIT_ASSERT( (int)istr.tellg() == 0 );
370 if ((int)istr.tellg() != theoricalTellg) {
371 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalTellg );
  /ndk/tests/device/test-gnustl-full/unit/
sstream_test.cpp 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) );
fstream_test.cpp 43 CPPUNIT_TEST(tellg);
73 void tellg();
228 void FstreamTest::tellg() function in class:FstreamTest
248 // CPPUNIT_ASSERT( is.tellg() == 0 );
253 CPPUNIT_ASSERT( is.tellg() == p );
269 is.tellg();
270 CPPUNIT_ASSERT( is.tellg() == p );
284 CPPUNIT_ASSERT( is.tellg() == p );
codecvt_test.cpp 145 * buffer (tellg -> -1), when you just read a 'a' you are at an undefined
315 CPPUNIT_ASSERT( (int)istr.tellg() == 0 );
328 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalPos );
350 CPPUNIT_ASSERT( (int)istr.tellg() == 0 );
372 if ((int)istr.tellg() != theoricalTellg) {
373 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalTellg );
  /ndk/tests/device/test-stlport/unit/
sstream_test.cpp 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) );
fstream_test.cpp 43 CPPUNIT_TEST(tellg);
73 void tellg();
228 void FstreamTest::tellg() function in class:FstreamTest
248 // CPPUNIT_ASSERT( is.tellg() == 0 );
253 CPPUNIT_ASSERT( is.tellg() == p );
269 is.tellg();
270 CPPUNIT_ASSERT( is.tellg() == p );
284 CPPUNIT_ASSERT( is.tellg() == p );
codecvt_test.cpp 145 * buffer (tellg -> -1), when you just read a 'a' you are at an undefined
315 CPPUNIT_ASSERT( (int)istr.tellg() == 0 );
328 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalPos );
350 CPPUNIT_ASSERT( (int)istr.tellg() == 0 );
372 if ((int)istr.tellg() != theoricalTellg) {
373 CPPUNIT_ASSERT( (int)istr.tellg() == theoricalTellg );
  /external/chromium_org/third_party/angle/util/
shader_utils.cpp 25 result.reserve(stream.tellg());
  /external/openfst/src/lib/
util.cc 66 int64 pos = strm.tellg();
fst.cc 114 int64 pos = strm.tellg();
130 if (rewind) pos = strm.tellg();
mapped-file.cc 63 std::streampos spos = s->tellg();
  /frameworks/native/opengl/tests/hwc/
hwcColorEquiv.cpp 206 || (((unsigned int) in.tellg() != in.str().length())
207 && (in.tellg() != (streampos) -1))) {
228 || (((unsigned int) in.tellg() != in.str().length())
229 && (in.tellg() != (streampos) -1))) {
hwcRects.cpp 405 while ((in.tellg() < (streampos) in.str().length())
406 && (in.tellg() != (streampos) -1)) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
const-fst.h 174 for (int i = 0; i < kFileAlign && strm.tellg() % kFileAlign; ++i)
185 for (int i = 0; i < kFileAlign && strm.tellg() % kFileAlign; ++i)
  /cts/suite/audio_quality/lib/src/audio/
Buffer.cpp 97 size_t size = file.tellg();
  /external/chromium_org/third_party/angle/samples/dds_to_header/
main.cpp 33 std::streamoff fileSize = readFile.tellg();
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_iostream.i 258 tellg(void);
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
file_io.cc 125 std::string file_text = message.substr(reader.tellg());

Completed in 1579 milliseconds

1 2 3 4