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

12

/libcore/luni/src/main/java/java/io/
H A DFilterInputStream.java95 * @see #skip(long)
150 public long skip(long byteCount) throws IOException { method in class:FilterInputStream
151 return in.skip(byteCount);
H A DFilterReader.java92 * @see #skip(long)
154 * {@code read()} and {@code skip()} will occur from this new location. If
175 * default implementation is to skip characters in the filtered reader.
186 public long skip(long charCount) throws IOException { method in class:FilterReader
188 return in.skip(charCount);
H A DInputStream.java84 * read or skip will actually read or skip that many bytes: they may read or skip fewer.
215 * <p>Note the "at most" in the description of this method: this method may choose to skip
221 * @param byteCount the number of bytes to skip.
226 public long skip(long byteCount) throws IOException { method in class:InputStream
H A DObjectInput.java99 public long skip(long byteCount) throws IOException; method in interface:ObjectInput
H A DStringBufferInputStream.java115 public synchronized long skip(long charCount) { method in class:StringBufferInputStream
H A DByteArrayInputStream.java182 public synchronized long skip(long byteCount) { method in class:ByteArrayInputStream
H A DFileInputStream.java183 public long skip(long byteCount) throws IOException { method in class:FileInputStream
195 return super.skip(byteCount);
H A DLineNumberInputStream.java219 * the number of bytes to skip.
228 public long skip(long byteCount) throws IOException { method in class:LineNumberInputStream
H A DReader.java174 * Invocations of {@code read()} and {@code skip()} will occur from this new
203 public long skip(long charCount) throws IOException { method in class:Reader
H A DStringReader.java183 * Invocations of {@code read()} and {@code skip()} will occur from this new
202 * Reader#skip(long) overridden method}, this method may skip negative skip
208 * the maximum number of characters to skip. Positive values skip
209 * forward; negative values skip backward.
221 public long skip(long charCount) throws IOException { method in class:StringReader
H A DBufferedInputStream.java340 * the number of bytes to skip. {@code skip} does nothing and
347 public synchronized long skip(long byteCount) throws IOException { method in class:BufferedInputStream
378 // Couldn't get all the bytes, skip what we read
384 return read + localIn.skip(byteCount - read);
H A DCharArrayReader.java234 * Invocations of {@code read()} and {@code skip()} will occur from this new
259 public long skip(long charCount) throws IOException { method in class:CharArrayReader
H A DLineNumberReader.java252 public long skip(long charCount) throws IOException { method in class:LineNumberReader
H A DPushbackInputStream.java208 public long skip(long byteCount) throws IOException { method in class:PushbackInputStream
221 numSkipped += in.skip(byteCount - numSkipped);
H A DPushbackReader.java341 public long skip(long charCount) throws IOException { method in class:PushbackReader
359 inSkipped = in.skip(requiredFromIn);
361 inSkipped = in.skip(charCount);
H A DBufferedReader.java77 * to skip the '\n' (and clear this field) but only readLine looks for '\r'
356 // If the last character was CR and the next character is LF, skip it.
440 * Invocations of {@code read()} and {@code skip()} will occur from this new
474 public long skip(long charCount) throws IOException { method in class:BufferedReader
495 // Couldn't get all the characters, skip what we read
/libcore/luni/src/main/java/java/util/zip/
H A DCheckedInputStream.java100 * @param byteCount the number of bytes to skip.
105 public long skip(long byteCount) throws IOException { method in class:CheckedInputStream
H A DDeflaterInputStream.java153 * skip {@code Integer.MAX_VALUE} bytes.
156 public long skip(long byteCount) throws IOException { method in class:DeflaterInputStream
H A DInflaterInputStream.java203 * @param byteCount the number of bytes to skip.
209 public long skip(long byteCount) throws IOException { method in class:InflaterInputStream
/libcore/luni/src/main/java/libcore/io/
H A DBufferIterator.java34 public abstract void skip(int byteCount); method in class:BufferIterator
H A DHeapBufferIterator.java46 public void skip(int byteCount) { method in class:HeapBufferIterator
H A DNioBufferIterator.java44 public void skip(int byteCount) { method in class:NioBufferIterator
/libcore/luni/src/main/java/libcore/net/url/
H A DFtpURLInputStream.java77 public long skip(long byteCount) throws IOException { method in class:FtpURLInputStream
78 return is.skip(byteCount);
/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
/libcore/luni/src/main/java/javax/crypto/
H A DCipherInputStream.java155 public long skip(long byteCount) throws IOException { method in class:CipherInputStream

Completed in 408 milliseconds

12