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

/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStreamImpl.java90 * to a smaller position is not allowed. <code>flushedPos</code>
93 protected long flushedPos = 0; field in class:ImageInputStreamImpl
767 if (pos < flushedPos) {
768 throw new IndexOutOfBoundsException("pos < flushedPos!");
802 if (pos < flushedPos) {
814 if (pos < flushedPos) {
815 throw new IndexOutOfBoundsException("pos < flushedPos!");
820 // Invariant: flushedPos >= 0
821 flushedPos = pos;
829 return flushedPos;
[all...]

Completed in 33 milliseconds