/dalvik/libcore/archive/src/main/java/java/util/zip/ |
CheckedInputStream.java | 102 * Skip up to n bytes of data on the underlying input stream. Any skipped 109 * @return the number of bytes skipped. 116 long skipped = 0; local 119 while (skipped != nbytes) { 121 (v = (int) (nbytes - skipped)) > b.length ? b.length : v); 123 return skipped; 126 skipped += x; 128 return skipped;
|
ZipInputStream.java | 365 * @return the number of bytes skipped. 375 long skipped = 0; local 377 while (skipped != value) { 378 long rem = value - skipped; 381 return skipped; 383 skipped += x; 385 return skipped;
|
/dalvik/libcore/luni/src/main/java/java/io/ |
InputStream.java | 51 * Returns an estimated number of bytes that can be read or skipped without blocking for more 239 * @return the number of bytes actually skipped. 247 long skipped = 0; local 257 while (skipped < n) { 260 return skipped; 262 skipped += read; 264 return skipped; 266 if (n - skipped < toRead) { 267 toRead = (int) (n - skipped); 270 return skipped; [all...] |
Reader.java | 217 * @return the number of characters actually skipped. 231 long skipped = 0; local 234 while (skipped < count) { 237 return skipped; 239 skipped += read; 241 return skipped; 243 if (count - skipped < toRead) { 244 toRead = (int) (count - skipped); 247 return skipped;
|
DataInputStream.java | 469 * input is reached before {@code count} bytes where skipped. 473 * @return the number of bytes actually skipped. 480 int skipped = 0; local 482 while (skipped < count && (skip = in.skip(count - skipped)) != 0) { 483 skipped += skip; 486 // if (skipped < 0) { 490 return skipped;
|
/external/guava/src/com/google/common/io/ |
LimitInputStream.java | 98 long skipped = in.skip(n); local 99 left -= skipped; 100 return skipped;
|
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_StringReader.java | 222 * @return the number of characters actually skipped. 234 long skipped = 0; local 237 skipped = count; 239 skipped = this.count - pos; 242 return skipped;
|
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherInputStream1Test.java | 225 int skipped = (int) cis.skip(2); local 226 int ind = skipped; 227 int got = skipped + cis.read(result, 0, 1); // the number of got bytes
|
/dalvik/libcore/luni/src/test/java/tests/api/java/io/ |
CharArrayReaderTest.java | 310 long skipped = 0; local 312 skipped = cr.skip(5L); 314 5L, skipped); 315 assertEquals("Test 2: Skip skipped wrong chars;",
|
LineNumberInputStreamTest.java | 272 long skipped = lnis.skip(4); local 273 assertEquals("Test 1: Incorrect number of characters skipped;", 274 4, skipped);
|
LineNumberReaderTest.java | 337 long skipped = lnr.skip(80); local 338 assertEquals("Test 1: Incorrect number of characters skipped;", 339 80, skipped);
|
DataInputStreamTest.java | 475 int skipped = 0; local 478 skipped = dis.skipBytes(50000); 483 assertTrue("Skipped should report " + testLength + " not " 484 + skipped, skipped == testLength);
|
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/ |
AudioInputStream.java | 125 long skipped = 0; local 126 while (skipped < n) { 129 return skipped; 131 skipped += read; 132 if (n - skipped < frameSize) { 133 return skipped; 136 return skipped;
|
/frameworks/base/core/jni/android/graphics/ |
CreateJavaOutputStreamAdaptor.cpp | 79 jlong skipped = env->CallLongMethod(fJavaInputStream, local 87 if (skipped < 0) { 88 skipped = 0; 90 return (size_t)skipped;
|
/external/opencore/nodes/pvdummyoutputnode/src/ |
pvmf_dummy_fileoutput_inport.cpp | 537 uint32 skipped; local 538 PVMFStatus retval = iDataQueue.DequeueMediaData(mediamsgptr, &dropped, &skipped);
|
pvmf_dummy_fileoutput_node.cpp | 919 uint32 skipped; local [all...] |
/external/opencore/nodes/pvfileoutputnode/src/ |
pvmf_fileoutput_inport.cpp | 553 uint32 skipped; local 554 PVMFStatus retval = iDataQueue.DequeueMediaData(mediamsgptr, &dropped, &skipped);
|
pvmf_fileoutput_node.cpp | 1250 uint32 skipped; local [all...] |
/external/freetype/src/autofit/ |
afcjk.c | 1027 FT_Int skipped = 0; local 1043 skipped++; [all...] |
/frameworks/base/core/java/android/widget/ |
TableLayout.java | 571 int skipped = 0; local 595 skipped++; 608 if (skipped > 0 && skipped < count) { 610 extraSpace = skipped * extraSpace / (count - skipped);
|
/system/core/adb/ |
file_sync_client.c | 678 int skipped = 0; local 727 skipped++; 732 fprintf(stderr,"%d file%s pushed. %d file%s skipped.\n", 734 skipped, (skipped == 1) ? "" : "s"); 875 int skipped = 0; local 929 skipped++; 934 fprintf(stderr, "%d file%s pulled. %d file%s skipped.\n", 936 skipped, (skipped == 1) ? "" : "s") [all...] |
/dalvik/hit/src/com/android/hit/ |
HprofParser.java | 606 long skipped = mInput.skip(numBytes); local 608 numBytes -= skipped;
|
/external/bluetooth/glib/tests/ |
testglib.c | 882 const gchar *skipped = g_path_skip_root (skip_root_checks[i].filename); local 883 if ((skipped && !skip_root_checks[i].without_root) || 884 (!skipped && skip_root_checks[i].without_root) || 885 ((skipped && skip_root_checks[i].without_root) && 886 strcmp (skipped, skip_root_checks[i].without_root))) 892 (skipped ? skipped : "<NULL>")); [all...] |
/external/icu4c/io/ |
uscanf_p.c | 88 UBool fSkipArg; /* TRUE if arg should be skipped */ 425 int32_t skipped; local 430 skipped = u_scanf_skip_leading_ws(input, info->fPadChar); 450 skipped += u_scanf_skip_leading_positive_sign(input, format, &status); 473 return parsePos + skipped; 488 int32_t skipped; local 493 skipped = u_scanf_skip_leading_ws(input, info->fPadChar); 513 skipped += u_scanf_skip_leading_positive_sign(input, format, &status); 536 return parsePos + skipped; 553 int32_t skipped; local 641 int32_t skipped; local 714 int32_t skipped; local 775 int32_t skipped = 0; local 869 int32_t skipped = 0; local 939 int32_t skipped; local 995 int32_t skipped; local 1051 int32_t skipped; local 1098 int32_t skipped; local [all...] |
/external/v8/src/ |
serialize.cc | 1275 int skipped = up_to_offset - bytes_processed_so_far_; local [all...] |