Searched refs:seek (Results 1 - 25 of 82) sorted by relevance

1234

/openjdk10/hotspot/test/compiler/loopopts/
H A DTest6855164.java46 private static final int previousSpaceIndex(CharSequence sb, int seek) { argument
47 seek--;
48 while (seek > 0) {
49 if (sb.charAt(seek) == ' ') {
50 while (seek > 0 && sb.charAt(seek - 1) == ' ')
51 seek--;
52 return seek;
54 seek--;
/openjdk10/test/lib/jdk/test/lib/hprof/parser/
H A DFileReadBuffer.java51 private void seek(long pos) throws IOException { method in class:FileReadBuffer
56 seek(pos);
62 seek(pos);
68 seek(pos);
74 seek(pos);
80 seek(pos);
86 seek(pos);
H A DMappedReadBuffer.java96 private void seek(long pos) throws IOException { method in class:MappedReadBuffer
103 seek(pos);
109 seek(pos);
115 seek(pos);
121 seek(pos);
127 seek(pos);
/openjdk10/jdk/test/java/io/RandomAccessFile/
H A DWriteBytesChars.java48 raf.seek(0);
59 raf.seek(0);
61 raf.seek(0);
H A DSeek.java26 @summary Test if seek will throw exception given a
43 raf.seek(-10);
45 ("Should have thrown an IOException when seek offset is < 0");
H A DReadLine.java43 raf.seek(0);
/openjdk10/jdk/test/javax/imageio/stream/
H A DReadFullyTest.java67 iin.seek(0L);
75 iin.seek(0L);
83 iin.seek(0L);
91 iin.seek(0L);
99 iin.seek(0L);
105 iin.seek(0L);
111 iin.seek(0L);
117 iin.seek(0L);
123 iin.seek(0L);
128 iin.seek(
[all...]
H A DMemoryCacheImageOutputStreamTest.java66 ios.seek(1000*i);
69 ios.seek(1000*(i + 1));
76 ios.seek(1000*i);
89 ios.seek(pos);
H A DBitPadding.java47 fcios.seek(0);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/
H A DRandomAccessFileDataSource.java40 public void seek(long pos) throws IOException { file.seek(pos); } method in class:RandomAccessFileDataSource
H A DDataSource.java41 public void seek(long pos) throws IOException; method in interface:DataSource
H A DMappedByteBufferDataSource.java47 public void seek(long pos) throws IOException { method in class:MappedByteBufferDataSource
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DSubImageInputStream.java70 public void seek(long pos) throws IOException { method in class:SubImageInputStream
71 stream.seek(pos - startingPos);
/openjdk10/jdk/test/java/io/InputStreamReader/
H A DGrowAfterEOF.java47 rf.seek(rf.length());
/openjdk10/jdk/src/java.desktop/share/classes/javax/imageio/stream/
H A DFileImageInputStream.java140 public void seek(long pos) throws IOException { method in class:FileImageInputStream
146 raf.seek(pos);
H A DFileCacheImageOutputStream.java157 * 0. It is legal to seek past the end of the file; an
166 public void seek(long pos) throws IOException { method in class:FileCacheImageOutputStream
173 cache.seek(pos);
231 seek(maxStreamPos);
251 cache.seek(oFlushedPos);
H A DFileImageOutputStream.java148 public void seek(long pos) throws IOException { method in class:FileImageOutputStream
154 raf.seek(pos);
H A DFileCacheImageInputStream.java140 cache.seek(length);
165 cache.seek(streamPos++);
195 cache.seek(streamPos);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java141 seek(imageHeaderOffset);
208 // NOTE: can destroy current seek() position!
240 seek(offset);
304 seek(offset);
356 seek(offset);
531 seek(offset);
568 seek(offset);
583 seek(rvaToFileOffset(getNameRVA()));
591 seek(rvaToFileOffset(getNamePointerTableRVA()));
593 // destroying seek() positio
3924 void seek(long offset) throws COFFException { method in class:COFFFileParser.COFFFileImpl
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFLSBDecompressor.java42 stream.seek(offset);
H A DTIFFNullDecompressor.java133 stream.seek(offset +
154 stream.seek(offset);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DRIFFWriter.java43 void seek(long chunksizepointer) throws IOException; method in interface:RIFFWriter.RandomAccessWriter
73 public void seek(long chunksizepointer) throws IOException { method in class:RIFFWriter.RandomAccessFileWriter
74 raf.seek(chunksizepointer);
126 public void seek(long chunksizepointer) throws IOException { method in class:RIFFWriter.RandomAccessByteWriter
227 public void seek(long pos) throws IOException { method in class:RIFFWriter
228 raf.seek(pos);
254 raf.seek(chunksizepointer);
261 raf.seek(fpointer);
/openjdk10/jdk/test/sun/util/calendar/zi/
H A DGen.java255 raf.seek(index);
258 raf.seek(fp);
283 raf.seek(index);
285 raf.seek(fp);
311 raf.seek(index);
313 raf.seek(fp);
330 raf.seek(index);
332 raf.seek(fp);
/openjdk10/langtools/test/tools/javap/
H A DBadAttributeLength.java64 raf.seek(attPos + 2); // Jump to the attribute length
82 cfile.seek(0);
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dgzwrite.c217 /* check for seek request */
218 if (state->seek) {
219 state->seek = 0;
347 /* check for seek request */
348 if (state->seek) {
349 state->seek = 0;
425 /* check for seek request */
426 if (state->seek) {
427 state->seek = 0;
519 /* check for seek reques
[all...]

Completed in 285 milliseconds

1234