Searched defs:getStreamPosition (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGBuffer.java180 iis.seek(iis.getStreamPosition()-bufAvail);
189 long getStreamPosition() throws IOException { method in class:JPEGBuffer
190 return (iis.getStreamPosition()-bufAvail);
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStream.java700 long getStreamPosition() throws IOException; method in interface:ImageInputStream
726 * <code>getStreamPosition</code>, is left unchanged.
761 * indicated by <code>getStreamPosition</code>, at the bit given
929 * <code>flushBefore(getStreamPosition())</code>.
H A DImageInputStreamImpl.java304 long cur = getStreamPosition();
626 public long getStreamPosition() throws IOException { method in class:ImageInputStreamImpl
657 seek(getStreamPosition() - 1);
697 seek(getStreamPosition() - 1);
723 * <code>seek(getStreamPosition() + n)</code>.
732 * @exception IOException if <code>getStreamPosition</code>
737 long pos = getStreamPosition();
739 return (int)(getStreamPosition() - pos);
744 * <code>seek(getStreamPosition() + n)</code>.
753 * @exception IOException if <code>getStreamPosition</cod
[all...]

Completed in 198 milliseconds