HomeSort by relevance Sort by last modified time
    Searched defs:BufferUnderflowException (Results 1 - 25 of 45) 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() {
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 171 throw new BufferUnderflowException();
ByteBufferAsCharBuffer.java 88 throw new BufferUnderflowException();
ByteBufferAsDoubleBuffer.java 88 throw new BufferUnderflowException();
ByteBufferAsFloatBuffer.java 87 throw new BufferUnderflowException();
ByteBufferAsIntBuffer.java 88 throw new BufferUnderflowException();
ByteBufferAsLongBuffer.java 88 throw new BufferUnderflowException();
ByteBufferAsShortBuffer.java 87 throw new BufferUnderflowException();
CharArrayBuffer.java 100 throw new BufferUnderflowException();
112 throw new BufferUnderflowException();
CharSequenceAdapter.java 67 throw new BufferUnderflowException();
82 throw new BufferUnderflowException();
FloatBuffer.java 227 * @throws BufferUnderflowException
242 * @throws BufferUnderflowException
265 * @throws BufferUnderflowException
271 throw new BufferUnderflowException();
IntBuffer.java 213 * @throws BufferUnderflowException
228 * @throws BufferUnderflowException
251 * @throws BufferUnderflowException
257 throw new BufferUnderflowException();
LongBuffer.java 215 * @throws BufferUnderflowException
230 * @throws BufferUnderflowException
253 * @throws BufferUnderflowException
259 throw new BufferUnderflowException();
ShortBuffer.java 216 * @throws BufferUnderflowException
231 * @throws BufferUnderflowException
254 * @throws 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();
CharBuffer.java 272 * @throws BufferUnderflowException
287 * @throws BufferUnderflowException
310 * @throws BufferUnderflowException
316 throw new BufferUnderflowException();
DirectByteBuffer.java 164 throw new BufferUnderflowException();
179 throw new BufferUnderflowException();
196 throw new BufferUnderflowException();
213 throw new BufferUnderflowException();
230 throw new BufferUnderflowException();
247 throw new BufferUnderflowException();
264 throw new BufferUnderflowException();
DoubleBuffer.java 226 * @throws BufferUnderflowException
241 * @throws BufferUnderflowException
264 * @throws BufferUnderflowException
270 throw new BufferUnderflowException();
ByteBuffer.java 357 * @throws BufferUnderflowException
372 * @throws BufferUnderflowException
394 * @throws BufferUnderflowException if {@code byteCount > remaining()}
399 throw new BufferUnderflowException();
425 * @throws BufferUnderflowException
454 * @throws BufferUnderflowException
483 * @throws BufferUnderflowException
511 * @throws BufferUnderflowException
539 * @throws BufferUnderflowException
567 * @throws BufferUnderflowException
    [all...]
  /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 306 milliseconds

1 2