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

/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStream.java731 * @param bitOffset the desired offset, as an <code>int</code>
734 * @exception IllegalArgumentException if <code>bitOffset</code>
740 void setBitOffset(int bitOffset) throws IOException; argument
H A DImageInputStreamImpl.java86 protected int bitOffset; field in class:ImageInputStreamImpl
322 this.bitOffset = 0;
633 return bitOffset;
636 public void setBitOffset(int bitOffset) throws IOException { argument
638 if (bitOffset < 0 || bitOffset > 7) {
639 throw new IllegalArgumentException("bitOffset must be betwwen 0 and 7!");
641 this.bitOffset = bitOffset;
648 int newBitOffset = (this.bitOffset
[all...]

Completed in 138 milliseconds