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

12345

/openjdk7/jdk/test/java/nio/file/Files/walkFileTree/
H A DSkipSiblings.java45 static boolean skip(Path path) { method in class:SkipSiblings
61 if (skip(dir))
68 if (skip(file))
/openjdk7/langtools/test/tools/javac/
H A DT6705935.java59 skip++;
81 if (skip == 0)
84 System.out.println(test + " files found, " + skip + " files skipped");
86 if (test == skip)
97 private int skip; field in class:T6705935
/openjdk7/jdk/src/share/classes/java/io/
H A DFilterInputStream.java138 * input stream. The <code>skip</code> method may, for a variety of
143 * This method simply performs <code>in.skip(n)</code>.
150 public long skip(long n) throws IOException { method in class:FilterInputStream
151 return in.skip(n);
158 * the same thread or another thread. A single read or skip of this
159 * many bytes will not block, but may read or skip fewer bytes.
H A DFilterReader.java82 public long skip(long n) throws IOException { method in class:FilterReader
83 return in.skip(n);
H A DInputStream.java192 * stream. The <code>skip</code> method may, for a variety of reasons, end
199 * <p> The <code>skip</code> method of this class creates a
210 public long skip(long n) throws IOException { method in class:InputStream
236 * might be the same thread or another thread. A single read or skip of this
237 * many bytes will not block, but may read or skip fewer bytes.
H A DObjectInput.java90 public long skip(long n) throws IOException; method in interface:ObjectInput
H A DStringBufferInputStream.java143 public synchronized long skip(long n) { method in class:StringBufferInputStream
H A DByteArrayInputStream.java211 public synchronized long skip(long n) { method in class:ByteArrayInputStream
H A DLineNumberInputStream.java163 * input stream. The <code>skip</code> method may, for a variety of
168 * The <code>skip</code> method of <code>LineNumberInputStream</code> creates
178 public long skip(long n) throws IOException { method in class:LineNumberInputStream
H A DReader.java159 /** Maximum skip-buffer size */
169 * @param n The number of characters to skip
176 public long skip(long n) throws IOException { method in class:Reader
178 throw new IllegalArgumentException("skip value is negative");
255 * mark(), reset(), or skip() invocations will throw an IOException.
H A DStringReader.java111 * <code>skip</code> method of the {@link Reader} superclass throws
113 * stream to skip backwards. Negative return values indicate a skip
114 * backwards. It is not possible to skip backwards past the beginning of
122 public long skip(long ns) throws IOException { method in class:StringReader
127 // Bound skip by beginning and end of the source
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DCheckedInputStream.java91 * @param n the number of bytes to skip
95 public long skip(long n) throws IOException { method in class:CheckedInputStream
/openjdk7/jdk/test/java/io/BufferedInputStream/
H A DCountUpdate.java96 public long skip(long n) { method in class:BufferBreaker
H A DSkipTest.java27 * @summary Test bufferedinputstream for data loss during skip
45 // set up to contain only some of the bytes to skip
50 // the skip must be longer than the buffer size
53 skipped += in.skip(15-skipped);
62 throw new RuntimeException("BufferedInputStream skip lost data");
75 public long skip(long n) { method in class:DataSupplier
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DLogInputStream.java99 public long skip(long n) throws IOException { method in class:LogInputStream
101 throw new IOException("Too many bytes to skip - " + n);
105 n = in.skip(n);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DProgressMonitorInputStream.java159 * Overrides <code>FilterInputStream.skip</code>
160 * to update the progress monitor after the skip.
162 public long skip(long n) throws IOException { method in class:ProgressMonitorInputStream
163 long nr = in.skip(n);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DvmGCOperations.cpp85 // we want to skip this GC attempt altogether, without doing a futile
88 bool skip = (_gc_count_before != Universe::heap()->total_collections()); local
89 if (_full && skip) {
90 skip = (_full_gc_count_before != Universe::heap()->total_full_collections());
92 if (!skip && GC_locker::is_active_and_needs_gc()) {
93 skip = Universe::heap()->is_maximal_no_gc();
94 assert(!(skip && (_gc_cause == GCCause::_gc_locker)),
97 return skip;
112 // skip collection
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DPositionInputStream.java63 public long skip(long n) throws IOException { method in class:PositionInputStream
64 long res = super.skip(n);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DStringCutter.java47 public void skip(String regexp) throws ParseException { method in class:StringCutter
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DAppInputStream.java40 // static dummy array we use to implement skip()
127 public synchronized long skip(long n) throws IOException { method in class:AppInputStream
H A DByteBufferInputStream.java111 public long skip(long n) throws IOException { method in class:ByteBufferInputStream
114 throw new IOException("skip on a closed InputStream");
126 int skip = Math.min(bb.remaining(), nInt);
128 bb.position(bb.position() + skip);
/openjdk7/jdk/test/javax/sound/midi/Gervill/DLSSoundbankReader/
H A DTestGetSoundbankInputStream2.java66 public long skip(long n) throws IOException { method in class:TestGetSoundbankInputStream2.BadInputStream
68 return is.skip(n);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SF2SoundbankReader/
H A DTestGetSoundbankInputStream2.java66 public long skip(long n) throws IOException { method in class:TestGetSoundbankInputStream2.BadInputStream
68 return is.skip(n);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpInputStream.java196 public long skip(long n) throws IOException method in class:HttpInputStream
200 long bytesSkipped = in.skip(n);
H A DHttpSendInputStream.java92 public long skip(long n) throws IOException method in class:HttpSendInputStream
98 return in.skip(n);

Completed in 129 milliseconds

12345