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

123

/openjdk7/hotspot/test/compiler/6855164/
H A DTest.java43 private static final int previousSpaceIndex(CharSequence sb, int seek) { argument
44 seek--;
45 while (seek > 0) {
46 if (sb.charAt(seek) == ' ') {
47 while (seek > 0 && sb.charAt(seek - 1) == ' ')
48 seek--;
49 return seek;
51 seek--;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DFileReadBuffer.java51 private void seek(long pos) throws IOException { method in class:FileReadBuffer
56 seek(pos);
61 seek(pos);
66 seek(pos);
71 seek(pos);
76 seek(pos);
81 seek(pos);
H A DMappedReadBuffer.java80 private void seek(long pos) throws IOException { method in class:MappedReadBuffer
86 seek(pos);
91 seek(pos);
96 seek(pos);
101 seek(pos);
106 seek(pos);
111 seek(pos);
/openjdk7/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);
H A DParameterCheck.java78 raf.seek(0);
103 raf.seek(0);
H A DSetLength.java53 f.seek(1 * chunk);
/openjdk7/hotspot/agent/src/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
/openjdk7/jdk/src/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);
/openjdk7/jdk/test/java/io/InputStreamReader/
H A DGrowAfterEOF.java47 rf.seek(rf.length());
/openjdk7/jdk/src/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.java137 cache.seek(length);
162 cache.seek(streamPos++);
192 cache.seek(streamPos);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRIFFWriter.java42 public void seek(long chunksizepointer) throws IOException; method in interface:RIFFWriter.RandomAccessWriter
71 public void seek(long chunksizepointer) throws IOException { method in class:RIFFWriter.RandomAccessFileWriter
72 raf.seek(chunksizepointer);
116 public void seek(long chunksizepointer) throws IOException { method in class:RIFFWriter.RandomAccessByteWriter
210 public void seek(long pos) throws IOException { method in class:RIFFWriter
211 raf.seek(pos);
236 raf.seek(chunksizepointer);
243 raf.seek(fpointer);
H A DModelByteBuffer.java59 raf.seek(root.fileoffset + arrayOffset());
83 raf.seek(mark);
93 raf.seek(p + n);
273 raf.seek(mbuff.fileoffset);
/openjdk7/hotspot/agent/src/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...]
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DGen.java264 raf.seek(index);
267 raf.seek(fp);
292 raf.seek(index);
294 raf.seek(fp);
320 raf.seek(index);
322 raf.seek(fp);
339 raf.seek(index);
341 raf.seek(fp);
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DStringStream.java125 public void seek(){ seekN(1); } method in class:StringStream
128 * If the next character is c, seek over it. Otherwise throw RuntimeException.
132 seek();
136 * If the next characters are the same as those in s, seek over them. Otherwise throw RuntimeException.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DWeakDataFile.java66 raf.seek(pointer);
75 raf.seek(pointer);
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DComment.java86 file.seek(file.length() - comment.length()
94 file.seek(file.length() - comment.length());
/openjdk7/jdk/test/java/io/RandomAccessFile/skipBytes/
H A DSkipBytes.java47 raf.seek(start);

Completed in 419 milliseconds

123