Searched defs:skip (Results 1 - 25 of 37) sorted by relevance

12

/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DCheckedInputStream.java106 * the number of bytes to skip.
112 public long skip(long nbytes) throws IOException { method in class:CheckedInputStream
H A DInflaterInputStream.java229 is.skip(cnt);
243 * the number of bytes to skip.
249 public long skip(long nbytes) throws IOException { method in class:InflaterInputStream
/dalvik/libcore/luni/src/main/java/java/io/
H A DFilterInputStream.java93 * @see #skip(long)
180 * the number of bytes to skip.
188 public long skip(long count) throws IOException { method in class:FilterInputStream
189 return in.skip(count);
H A DFilterReader.java92 * @see #skip(long)
163 * {@code read()} and {@code skip()} will occur from this new location. If
184 * default implementation is to skip characters in the filtered reader.
187 * the maximum number of characters to skip.
197 public long skip(long count) throws IOException { method in class:FilterReader
199 return in.skip(count);
H A DInputStream.java70 * read or skip will actually read or skip that many bytes: they may read or skip fewer.
232 * <p>Note the "at most" in the description of this method: this method may choose to skip
238 * @param n the number of bytes to skip.
243 public long skip(long n) throws IOException { method in class:InputStream
H A DObjectInput.java107 * the number of bytes to skip.
113 public long skip(long toSkip) throws IOException; method in interface:ObjectInput
H A DReader.java195 * Invocations of {@code read()} and {@code skip()} will occur from this new
216 * the maximum number of characters to skip.
226 public long skip(long count) throws IOException { method in class:Reader
H A DStringBufferInputStream.java152 * the number of characters to skip.
156 public synchronized long skip(long n) { method in class:StringBufferInputStream
H A DByteArrayInputStream.java221 * the number of bytes to skip.
225 public synchronized long skip(long n) { method in class:ByteArrayInputStream
H A DLineNumberInputStream.java235 * the number of bytes to skip.
244 public long skip(long count) throws IOException { method in class:LineNumberInputStream
H A DLineNumberReader.java252 * the number of characters to skip.
263 public long skip(long count) throws IOException { method in class:LineNumberReader
H A DStringReader.java207 * Invocations of {@code read()} and {@code skip()} will occur from this new
228 * Reader#skip(long) overridden method}, this method may skip negative skip
234 * the maximum number of characters to skip. Positive values skip
235 * forward; negative values skip backward.
247 public long skip(long ns) throws IOException { method in class:StringReader
H A DBufferedInputStream.java406 * the number of bytes to skip. {@code skip} does nothing and
413 public synchronized long skip(long amount) throws IOException { method in class:BufferedInputStream
446 // Couldn't get all the bytes, skip what we read
452 return read + localIn.skip(amount - read);
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 DCharArrayReader.java259 * Invocations of {@code read()} and {@code skip()} will occur from this new
282 * the number of characters to skip.
288 public long skip(long n) throws IOException { method in class:CharArrayReader
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 DPushbackInputStream.java213 * the number of bytes to skip.
219 public long skip(long count) throws IOException { method in class:PushbackInputStream
232 numSkipped += in.skip(count - numSkipped);
H A DPushbackReader.java372 * the number of characters to skip.
379 public long skip(long count) throws IOException { method in class:PushbackReader
399 inSkipped = in.skip(requiredFromIn);
401 inSkipped = in.skip(count);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
H A DSocketInputStream.java92 public long skip(long n) throws IOException { method in class:SocketInputStream
93 return (0 == n) ? 0 : super.skip(n);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DPasswordProtectedInputStream.java70 public long skip(long n) throws IOException { method in class:PasswordProtectedInputStream
71 long skip = super.skip(n);
72 pwdIndex += skip;
73 return skip;
H A DPositionedInputStream.java77 public long skip(long n) throws IOException { method in class:PositionedInputStream
78 long skip = in.skip(n);
79 currentPosition += skip; // Maybe currentPosition should be long ?
80 return skip;
/dalvik/libcore/crypto/src/main/java/javax/crypto/
H A DCipherInputStream.java176 public long skip(long n) throws IOException { method in class:CipherInputStream
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_StringReader.java197 * location. Invocations of <code>read()/skip()</code> will occur from
221 * The number of characters to skip.
228 public long skip(long count) throws IOException { method in class:Support_StringReader
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DSSLInputStream.java49 public long skip(long n) throws IOException { method in class:SSLInputStream
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
H A DFtpURLInputStream.java84 public long skip(long sbytes) throws IOException { method in class:FtpURLInputStream
85 return is.skip(sbytes);

Completed in 1200 milliseconds

12