Searched refs:skip (Results 51 - 75 of 82) sorted by relevance

1234

/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpURLConnectionImpl.java178 public long skip(long n) throws IOException { method in class:HttpURLConnectionImpl.LocalCloseInputStream
183 return is.skip(n);
316 public long skip(int amount) throws IOException { method in class:HttpURLConnectionImpl.LimitedInputStream
324 long result = is.skip(amount);
368 // If we're asked to close a stream with unread chunks, we need to skip them.
374 long skipped = is.skip(bytesRemaining);
470 public long skip(int amount) throws IOException { method in class:HttpURLConnectionImpl.ChunkedInputStream
489 long result = is.skip(amount);
/dalvik/dx/src/com/android/dx/ssa/
H A DSCCP.java261 boolean skip=false;
278 skip = true;
309 return skip ? null : CstInteger.make(vR);
/dalvik/libcore/luni/src/main/java/java/io/
H A DFileInputStream.java323 * the number of bytes to skip.
330 public long skip(long count) throws IOException { method in class:FileInputStream
337 // KA013=Number of bytes to skip cannot be negative
345 // when lseek(2) fails with ESPIPE and call super.skip(count).
H A DBufferedReader.java484 * Invocations of {@code read()} and {@code skip()} will occur from this new
512 * the maximum number of characters to skip.
523 public long skip(long amount) throws IOException { method in class:BufferedReader
549 // Couldn't get all the characters, skip what we read
H A DObjectStreamClass.java497 boolean skip = Modifier.isPrivate(modifiers)
500 if (!skip) {
H A DObjectInputStream.java2673 * be used to skip bytes at any arbitrary position, just when reading
2677 * the number of bytes to skip.
2693 long skipped = primitiveData.skip(length - offset);
/dalvik/libcore/luni/src/test/java/java/net/
H A DURLConnectionTest.java164 left -= in.skip(left);
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DBlobTest.java146 is.skip(96);
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DClientHello.java117 in.skip(length - this.length);
H A DSSLRecordProtocol.java371 in.skip(2); // just skip the version number
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DZipInputStream.java133 skip(Long.MAX_VALUE);
364 * the number of bytes to skip.
370 public long skip(long value) throws IOException { method in class:ZipInputStream
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DFilterInputStreamTest.java258 is.skip(10);
394 * @tests java.io.FilterInputStream#skip(long)
398 method = "skip",
403 is.skip(10);
405 assertTrue("Test 1: Failed to skip to the correct position.",
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DScannerTest.java6211 * @tests java.util.Scanner#skip(Pattern)
6216 method = "skip",
6222 s.skip((String) null);
6231 s.skip(Pattern.compile("\\p{Lower}"));
6244 s.skip(Pattern.compile("\\p{Digit}"));
6249 s.skip(Pattern.compile("\\p{Digit}+"));
6256 s.skip(Pattern.compile("test"));
6265 s.skip(Pattern.compile("\\p{Digit}{4}"));
6276 s.skip(Pattern.compile("\\p{Digit}{3}\\p{Lower}"));
6283 s.skip((Patter
[all...]
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DJarFile.java141 public long skip(long nbytes) throws IOException { method in class:JarFile.JarFileInputStream
/dalvik/vm/arch/arm/
H A DCallOldABI.S124 @ If there are N args, we want to skip 0 and 1, and push (N-1)..2. We
H A DCallEABI.S193 addcc r7, r7, #8 @ skip past 2 words, for r2 and r3
195 addcs r7, r7, #4 @ skip past 1 word, for r2
322 beq .Lcopy_done @ zero args, skip stack copy
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/
H A DX509CertFactoryImpl.java504 // check and skip opening boundary delimiter
516 // read (skip) the trailing characters of
564 // check and skip closing boundary delimiter prefix
576 // read (skip) the trailing characters of
590 // skip trailing line breaks
901 public long skip(long n) throws IOException { method in class:X509CertFactoryImpl.RestoringInputStream
913 return inStream.skip(n);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
H A DZoneInfoDB.java214 fis.skip(start);
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarFileTest.java541 is.skip(100000);
770 jarFile.getInputStream(zipEntry).skip(Long.MAX_VALUE);
790 jarFile.getInputStream(zipEntry).skip(Long.MAX_VALUE);
796 //jarFile.getInputStream(zipEntry).skip(Long.MAX_VALUE);
/dalvik/libcore/luni/src/main/java/java/lang/
H A DString.java2282 int skip = 1;
2284 skip += j;
2286 i += Math.max(md2, skip);
/dalvik/libcore/luni/src/main/java/java/util/
H A DScanner.java55 * <p>A {@code Scanner} can also find or skip specific patterns without regard for the
1585 * used to skip over input.
1592 public Scanner skip(Pattern pattern) { method in class:Scanner
1624 * {@code skip(Pattern.compile(pattern))}.
1633 public Scanner skip(String pattern) { method in class:Scanner
1634 return skip(Pattern.compile(pattern));
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DJarURLConnectionTest.java130 is.skip(je.getSize());
/dalvik/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java551 skip();
645 skip();
660 skip();
693 skip();
703 skip();
724 read(); // skip endquote
990 private final void skip() throws IOException { method in class:KXmlParser
/dalvik/hit/src/com/android/hit/
H A DHprofParser.java599 * BufferedInputStream will not skip(int) the entire requested number
601 * routine is needed to actually skip over the requested number of bytes
606 long skipped = mInput.skip(numBytes);
/dalvik/vm/mterp/armv5te/
H A Dfooter.S77 * having issues translating/executing a Dalvik instruction. We have to skip
486 beq .LinvokeArgsDone @ if no args, skip the rest
804 beq 1f @ no, skip ahead

Completed in 1574 milliseconds

1234