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

12

/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DCheckedInputStream.java113 * the number of bytes to skip.
120 public long skip(long nbytes) throws IOException { method in class:CheckedInputStream
H A DInflaterInputStream.java237 is.skip(cnt);
251 * the number of bytes to skip.
258 public long skip(long nbytes) throws IOException { method in class:InflaterInputStream
/dalvik/libcore/luni/src/main/java/java/io/
H A DFilterInputStream.java114 * @see #skip(long)
206 * the number of bytes to skip.
215 public long skip(long count) throws IOException { method in class:FilterInputStream
216 return in.skip(count);
H A DFilterReader.java100 * @see #skip(long)
175 * {@code read()} and {@code skip()} will occur from this new location. If
197 * default implementation is to skip characters in the filtered reader.
200 * the maximum number of characters to skip.
211 public long skip(long count) throws IOException { method in class:FilterReader
213 return in.skip(count);
H A DInputStream.java231 * the number of bytes to skip.
237 public long skip(long n) throws IOException { method in class:InputStream
H A DObjectInput.java115 * the number of bytes to skip.
122 public long skip(long toSkip) throws IOException; method in interface:ObjectInput
H A DReader.java210 * Invocations of {@code read()} and {@code skip()} will occur from this new
232 * the maximum number of characters to skip.
243 public long skip(long count) throws IOException { method in class:Reader
H A DStringBufferInputStream.java171 * the number of characters to skip.
176 public synchronized long skip(long n) { method in class:StringBufferInputStream
H A DByteArrayInputStream.java241 * the number of bytes to skip.
246 public synchronized long skip(long n) { method in class:ByteArrayInputStream
H A DLineNumberInputStream.java259 * the number of bytes to skip.
269 public long skip(long count) throws IOException { method in class:LineNumberInputStream
H A DLineNumberReader.java268 * the number of characters to skip.
280 public long skip(long count) throws IOException { method in class:LineNumberReader
H A DPushbackReader.java391 * the number of characters to skip.
399 public long skip(long count) throws IOException { method in class:PushbackReader
419 inSkipped = in.skip(requiredFromIn);
421 inSkipped = in.skip(count);
H A DStringReader.java223 * Invocations of {@code read()} and {@code skip()} will occur from this new
249 * the maximum number of characters to skip.
259 public long skip(long ns) throws IOException { method in class:StringReader
H A DBufferedInputStream.java402 * the number of bytes to skip. {@code skip} does nothing and
410 public synchronized long skip(long amount) throws IOException { method in class:BufferedInputStream
435 // Couldn't get all the bytes, skip what we read
442 return read + in.skip(amount - read);
H A DBufferedReader.java449 * Invocations of {@code read()} and {@code skip()} will occur from this new
478 * the maximum number of characters to skip.
490 public long skip(long amount) throws IOException { method in class:BufferedReader
516 // Couldn't get all the characters, skip what we read
H A DCharArrayReader.java286 * Invocations of {@code read()} and {@code skip()} will occur from this new
310 * the number of characters to skip.
317 public long skip(long n) throws IOException { method in class:CharArrayReader
H A DFileInputStream.java343 * the number of bytes to skip.
351 public long skip(long count) throws IOException { method in class:FileInputStream
358 // KA013=Number of bytes to skip cannot be negative
H A DPushbackInputStream.java239 * the number of bytes to skip.
246 public long skip(long count) throws IOException { method in class:PushbackInputStream
259 numSkipped += in.skip(count - numSkipped);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
H A DSocketInputStream.java91 public long skip(long n) throws IOException { method in class:SocketInputStream
92 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.java189 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.java55 * @see java.io.InputStream#skip(long)
57 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 242 milliseconds

12