Searched defs:skip (Results 26 - 50 of 106) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedInputStream.java93 * the next <code>read</code> or <code>skip</code>
348 * See the general contract of the <code>skip</code>
356 public synchronized long skip(long n) throws IOException { method in class:BufferedInputStream
366 return getInIfOpen().skip(n);
384 * the same thread or another thread. A single read or skip of this
385 * many bytes will not block, but may read or skip fewer bytes.
460 * or skip() invocations will throw an IOException.
H A DCharArrayReader.java149 * <code>skip</code> method of the {@link Reader} superclass throws
153 * @param n The number of characters to skip
157 public long skip(long n) throws IOException { method in class:CharArrayReader
226 * mark(), reset(), or skip() invocations will throw an IOException.
H A DLineNumberReader.java58 /** If the next character is a line feed, skip it */
207 /** Maximum skip-buffer size */
217 * The number of characters to skip
227 public long skip(long n) throws IOException { method in class:LineNumberReader
229 throw new IllegalArgumentException("skip() value is negative");
H A DPushbackInputStream.java259 * the same thread or another thread. A single read or skip of this
260 * many bytes will not block, but may read or skip fewer bytes.
285 * input stream. The <code>skip</code> method may, for a variety of
289 * <p> The <code>skip</code> method of <code>PushbackInputStream</code>
291 * calls the <code>skip</code> method of the underlying input stream if
302 * @see java.io.InputStream#skip(long n)
305 public long skip(long n) throws IOException { method in class:PushbackInputStream
320 pskip += super.skip(n);
371 * available(), reset(), or skip() invocations will throw an IOException.
H A DPushbackReader.java242 * unread(), ready(), or skip() invocations will throw an IOException.
256 * @param n The number of characters to skip
263 public long skip(long n) throws IOException { method in class:PushbackReader
265 throw new IllegalArgumentException("skip value is negative");
278 return avail + super.skip(n);
H A DBufferedReader.java75 /** If the next character is a line feed, skip it */
388 * @param n The number of characters to skip
395 public long skip(long n) throws IOException { method in class:BufferedReader
397 throw new IllegalArgumentException("skip value is negative");
441 * is a newline character, then just skip it right away.
H A DFileInputStream.java283 * <p>The <code>skip</code> method may, for a variety of
286 * <code>IOException</code> is thrown, even though the <code>skip</code>
290 * <p>This method may skip more bytes than are remaining in the backing
301 public native long skip(long n) throws IOException; method in class:FileInputStream
307 * the same thread or another thread. A single read or skip of this
308 * many bytes will not block, but may read or skip fewer bytes.
310 * <p> In some cases, a non-blocking read (or skip) may appear to be
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketInputStream.java219 * @param n the number of bytes to skip
223 public long skip(long numbytes) throws IOException { method in class:SocketInputStream
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DDeflaterInputStream.java224 public long skip(long n) throws IOException { method in class:DeflaterInputStream
226 throw new IllegalArgumentException("negative skip length");
H A DInflaterInputStream.java191 * @param n the number of bytes to skip
196 public long skip(long n) throws IOException { method in class:InflaterInputStream
198 throw new IllegalArgumentException("negative skip length");
H A DZipInputStream.java230 * @param n the number of bytes to skip
236 public long skip(long n) throws IOException { method in class:ZipInputStream
238 throw new IllegalArgumentException("negative skip length");
332 // Invalid zip64 extra fields, simply skip. Even it's
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherInputStream.java47 * <code>skip</code> method skips, and the <code>available</code>
257 public long skip(long n) throws IOException { method in class:CipherInputStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DTeeInputStream.java87 public long skip(long n) throws IOException { method in class:TeeInputStream
88 return source.skip(n);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHandshakeInStream.java108 public long skip(long n) throws IOException { method in class:HandshakeInStream
109 return r.skip(n);
155 * Do more than skip that handshake data ... totally ignore it.
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DManifestEntryVerifier.java70 private boolean skip = true; field in class:ManifestEntryVerifier
102 skip = true;
146 skip = false;
160 if (skip) return;
171 if (skip) return;
198 if (skip) {
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DStreamBuffer.java107 public long skip(long len) throws IOException { method in class:StreamBuffer.StreamBufferInputStream
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMeteredStream.java139 public synchronized long skip(long n) throws IOException { method in class:MeteredStream
141 // REMIND: what does skip do on EOF????
147 n = in.skip(n);
150 // just skip min(n, num_bytes_left)
152 n = in.skip(min);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DASCIIReader.java169 * @param n The number of characters to skip
175 public long skip(long n) throws IOException { method in class:ASCIIReader
176 return fInputStream.skip(n);
177 } // skip(long):long
H A DUCSReader.java224 * @param n The number of characters to skip
230 public long skip(long n) throws IOException { method in class:UCSReader
232 // n leftward to get num of bytes to skip, and then move the result rightward
238 long bytesSkipped = fInputStream.skip(n<<charWidth);
241 } // skip(long):long
H A DUTF8Reader.java309 // skip read; last character was in error
572 * @param n The number of characters to skip
578 public long skip(long n) throws IOException { method in class:UTF8Reader
596 } // skip(long):long
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioInputStream.java39 * You can skip over an arbitrary number of bytes to get to a later position
253 * @see #skip
327 public long skip(long n) throws IOException { method in class:AudioInputStream
329 // make sure not to skip fractional frames
335 // don't skip more than our set length in frames.
340 long temp = stream.skip(n);
346 throw new IOException("Could not skip an integer number of frames.");
359 * a <code>read</code> or <code>skip</code> method for this audio input stream; the limit
368 * @see #skip
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatInputStream.java94 public long skip(long len) throws IOException { method in class:AudioFloatInputStream.BytaArrayAudioFloatInputStream
185 public long skip(long len) throws IOException { method in class:AudioFloatInputStream.DirectAudioFloatInputStream
187 long ret = stream.skip(b_len);
270 public abstract long skip(long len) throws IOException; method in class:AudioFloatInputStream
H A DRIFFReader.java173 long s = skip(n - skipped);
183 public long skip(long n) throws IOException { method in class:RIFFReader
187 long len = stream.skip(avail);
193 long ret = stream.skip(n);
H A DSunFileWriter.java202 public long skip(long n) throws IOException { method in class:SunFileWriter.NoCloseInputStream
203 return in.skip(n);
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogCleanupReader.java183 public long skip(long n) throws java.io.IOException { method in class:LogCleanupReader

Completed in 56 milliseconds

12345