HomeSort by relevance Sort by last modified time
    Searched full:chars_read (Results 1 - 17 of 17) sorted by null

  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
HexDump.java 76 int chars_read = data.length - j; local
78 if (chars_read > 16) {
79 chars_read = 16;
83 if (k < chars_read) {
90 for (int k = 0; k < chars_read; k++) {
101 display_offset += chars_read;
  /external/stlport/test/unit/
fstream_test.cpp 387 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) ); local
388 CPPUNIT_CHECK( chars_read == 11 );
390 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
391 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
413 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) ); local
414 CPPUNIT_CHECK( chars_read == 11 );
418 // Depending on how '\n' is written in file, file position can be greater or equal to the number of chars_read read.
420 CPPUNIT_ASSERT( offset >= chars_read );
466 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) / sizeof(wchar_t) ); local
467 CPPUNIT_CHECK( chars_read == 11 )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 405 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) ); local
406 CPPUNIT_CHECK( chars_read == 11 );
408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
431 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) ); local
432 CPPUNIT_CHECK( chars_read == 11 );
436 // Depending on how '\n' is written in file, file position can be greater or equal to the number of chars_read read.
438 CPPUNIT_ASSERT( offset >= chars_read );
484 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) / sizeof(wchar_t) ); local
485 CPPUNIT_CHECK( chars_read == 11 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 405 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) ); local
406 CPPUNIT_CHECK( chars_read == 11 );
408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
431 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) ); local
432 CPPUNIT_CHECK( chars_read == 11 );
436 // Depending on how '\n' is written in file, file position can be greater or equal to the number of chars_read read.
438 CPPUNIT_ASSERT( offset >= chars_read );
484 int chars_read = (int)s.rdbuf()->sgetn( b1, sizeof(b1) / sizeof(wchar_t) ); local
485 CPPUNIT_CHECK( chars_read == 11 )
    [all...]
  /external/stlport/src/
facets_byname.cpp 346 size_t chars_read = _WLocale_mbtowc(_M_codecvt, local
349 if (chars_read == (size_t) -1) {
355 if (chars_read == (size_t) -2) {
361 from += chars_read;
413 size_t chars_read = _WLocale_mbtowc(_M_codecvt, local
416 if ((chars_read == (size_t) -1) || (chars_read == (size_t) -2)) // error or partial
418 __count += chars_read;
419 from += chars_read;
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
facets_byname.cpp 346 size_t chars_read = _WLocale_mbtowc(_M_codecvt, local
349 if (chars_read == (size_t) -1) {
355 if (chars_read == (size_t) -2) {
361 from += chars_read;
413 size_t chars_read = _WLocale_mbtowc(_M_codecvt, local
416 if ((chars_read == (size_t) -1) || (chars_read == (size_t) -2)) // error or partial
418 __count += chars_read;
419 from += chars_read;
    [all...]
  /system/core/fastboot/
usb_linux.c 166 int chars_read = read(fd, info.serial_number, local
170 if (chars_read <= 0)
172 else if (info.serial_number[chars_read - 1] == '\n') {
174 info.serial_number[chars_read - 1] = '\0';
  /external/chromium_org/third_party/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 79 size_t chars_read = fread(&buf, 1, 1, stats_file); local
80 if (chars_read != 1 || feof(stats_file)) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
sysinfo.cc 347 int chars_read = 0; local
361 chars_read = read(fd, line + linelen, bytes_to_read);
362 line[linelen + chars_read] = '\0';
388 } while (chars_read > 0);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
sysinfo.cc 332 int chars_read = 0; local
346 chars_read = read(fd, line + linelen, bytes_to_read);
347 line[linelen + chars_read] = '\0';
373 } while (chars_read > 0);
    [all...]
  /external/chromium_org/v8/src/
scanner.cc 1147 uc32 chars_read[6] = {'\\\\', 'u', 0, 0, 0, 0}; local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/libs/armeabi/
libstlport_shared.so 
  /prebuilts/ndk/5/sources/cxx-stl/stlport/libs/armeabi-v7a/
libstlport_shared.so 
  /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
commons-io-2.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 

Completed in 1261 milliseconds