HomeSort by relevance Sort by last modified time
    Searched defs:BufferUnderflowException (Results 1 - 25 of 37) sorted by null

1 2

  /libcore/luni/src/main/java/java/nio/
BufferUnderflowException.java 20 * A <code>BufferUnderflowException</code> is thrown when elements are read
23 public class BufferUnderflowException extends RuntimeException {
28 * Constructs a <code>BufferUnderflowException</code>.
30 public BufferUnderflowException() {
CharArrayBuffer.java 100 throw new BufferUnderflowException();
112 throw new BufferUnderflowException();
DoubleArrayBuffer.java 100 throw new BufferUnderflowException();
112 throw new BufferUnderflowException();
FloatArrayBuffer.java 101 throw new BufferUnderflowException();
113 throw new BufferUnderflowException();
IntArrayBuffer.java 100 throw new BufferUnderflowException();
112 throw new BufferUnderflowException();
LongArrayBuffer.java 100 throw new BufferUnderflowException();
112 throw new BufferUnderflowException();
ShortArrayBuffer.java 100 throw new BufferUnderflowException();
112 throw new BufferUnderflowException();
Buffer.java 177 throw new BufferUnderflowException();
ByteBufferAsCharBuffer.java 89 throw new BufferUnderflowException();
ByteBufferAsDoubleBuffer.java 89 throw new BufferUnderflowException();
ByteBufferAsFloatBuffer.java 88 throw new BufferUnderflowException();
ByteBufferAsIntBuffer.java 89 throw new BufferUnderflowException();
ByteBufferAsLongBuffer.java 89 throw new BufferUnderflowException();
ByteBufferAsShortBuffer.java 88 throw new BufferUnderflowException();
CharSequenceAdapter.java 67 throw new BufferUnderflowException();
82 throw new BufferUnderflowException();
FloatBuffer.java 227 * @exception BufferUnderflowException
242 * @exception BufferUnderflowException
265 * @exception BufferUnderflowException
271 throw new BufferUnderflowException();
IntBuffer.java 213 * @exception BufferUnderflowException
228 * @exception BufferUnderflowException
251 * @exception BufferUnderflowException
257 throw new BufferUnderflowException();
LongBuffer.java 215 * @exception BufferUnderflowException
230 * @exception BufferUnderflowException
253 * @exception BufferUnderflowException
259 throw new BufferUnderflowException();
ShortBuffer.java 216 * @exception BufferUnderflowException
231 * @exception BufferUnderflowException
254 * @exception BufferUnderflowException
260 throw new BufferUnderflowException();
ByteArrayBuffer.java 152 throw new BufferUnderflowException();
165 throw new BufferUnderflowException();
196 throw new BufferUnderflowException();
211 throw new BufferUnderflowException();
226 throw new BufferUnderflowException();
ByteBuffer.java 353 * @exception BufferUnderflowException
368 * @exception BufferUnderflowException
390 * @exception BufferUnderflowException if {@code byteCount > remaining()}
395 throw new BufferUnderflowException();
421 * @exception BufferUnderflowException
450 * @exception BufferUnderflowException
479 * @exception BufferUnderflowException
507 * @exception BufferUnderflowException
535 * @exception BufferUnderflowException
563 * @exception BufferUnderflowException
    [all...]
CharBuffer.java 281 * @exception BufferUnderflowException
296 * @exception BufferUnderflowException
319 * @exception BufferUnderflowException
325 throw new BufferUnderflowException();
DirectByteBuffer.java 151 throw new BufferUnderflowException();
164 throw new BufferUnderflowException();
179 throw new BufferUnderflowException();
194 throw new BufferUnderflowException();
209 throw new BufferUnderflowException();
224 throw new BufferUnderflowException();
239 throw new BufferUnderflowException();
DoubleBuffer.java 226 * @exception BufferUnderflowException
241 * @exception BufferUnderflowException
264 * @exception BufferUnderflowException
270 throw new BufferUnderflowException();
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 20 import java.nio.BufferUnderflowException;
208 * @throws BufferUnderflowException
219 public void throwException() throws BufferUnderflowException,
224 throw new BufferUnderflowException();

Completed in 99 milliseconds

1 2