/libcore/luni/src/main/java/java/io/ |
D | Reader.java | 208 long skipped = 0; in skip() local 211 while (skipped < charCount) { in skip() 214 return skipped; in skip() 216 skipped += read; in skip() 218 return skipped; in skip() 220 if (charCount - skipped < toRead) { in skip() 221 toRead = (int) (charCount - skipped); in skip() 224 return skipped; in skip()
|
D | CharArrayReader.java | 265 long skipped = 0; 268 skipped = charCount; 270 skipped = this.count - pos; 273 return skipped;
|
D | DataInputStream.java | 202 int skipped = 0; in skipBytes() local 204 while (skipped < count && (skip = in.skip(count - skipped)) != 0) { in skipBytes() 205 skipped += skip; in skipBytes() 207 return skipped; in skipBytes()
|
D | ObjectInputStream.java | 2312 long skipped = primitiveData.skip(length - offset); in skipBytes() local 2313 if (skipped == 0) { in skipBytes() 2316 offset += (int) skipped; in skipBytes()
|
/libcore/support/src/test/java/tests/support/ |
D | Support_StringReader.java | 234 long skipped = 0; in skip() local 237 skipped = count; in skip() 239 skipped = this.count - pos; in skip() 242 return skipped; in skip()
|
/libcore/luni/src/main/java/libcore/io/ |
D | Streams.java | 156 long skipped = 0; in skipByReading() local 157 while (skipped < byteCount) { in skipByReading() 158 int toRead = (int) Math.min(byteCount - skipped, buffer.length); in skipByReading() 163 skipped += read; in skipByReading() 172 return skipped; in skipByReading()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldCharArrayReaderTest.java | 238 long skipped = 0; in test_skipJ() local 240 skipped = cr.skip(5L); in test_skipJ() 242 5L, skipped); in test_skipJ()
|
D | OldLineNumberInputStreamTest.java | 150 long skipped = lnis.skip(4); in test_skipJ() local 152 4, skipped); in test_skipJ()
|
D | OldLineNumberReaderTest.java | 164 long skipped = lnr.skip(80); in test_skipJ() local 166 80, skipped); in test_skipJ()
|
/libcore/ |
D | Android.mk | 49 $(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_T…
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | CipherInputStream1Test.java | 188 int skipped = (int) cis.skip(2); in testSkip() local 189 int ind = skipped; in testSkip() 190 int got = skipped + cis.read(result, 0, 1); // the number of got bytes in testSkip()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | CharArrayReaderTest.java | 164 long skipped = cr.skip(5L); in test_skipJ() local 166 assertEquals("Failed to skip correct number of chars", 5L, skipped); in test_skipJ()
|
D | PushbackReaderTest.java | 241 boolean skipped = false; in test_skip$J() 260 skipped = true; in test_skip$J() 265 assertTrue("Failed to skip characters" + e, skipped); in test_skip$J()
|
D | DataInputStreamTest.java | 557 int skipped = 0; in test_skipBytesI() local 560 skipped = dis.skipBytes(50000); in test_skipBytesI() 564 + skipped, skipped == fileString.length()); in test_skipBytesI()
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
D | BinaryHprofReader.java | 230 long skipped = in.skip(recordLength); in skipRecord() local 231 if (skipped != recordLength) { in skipRecord() 233 + " bytes but only skipped " + skipped + " bytes"); in skipRecord()
|
/libcore/benchmarks/libs/ |
D | caliper.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |