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

1 2

  /libcore/luni/src/main/java/java/nio/
BufferOverflowException.java 20 * A <code>BufferOverflowException</code> is thrown when elements are written
23 public class BufferOverflowException extends RuntimeException {
28 * Constructs a <code>BufferOverflowException</code>.
30 public BufferOverflowException() {
ReadWriteCharArrayBuffer.java 97 throw new BufferOverflowException();
119 throw new BufferOverflowException();
ReadWriteDoubleArrayBuffer.java 100 throw new BufferOverflowException();
122 throw new BufferOverflowException();
ReadWriteFloatArrayBuffer.java 100 throw new BufferOverflowException();
122 throw new BufferOverflowException();
ReadWriteIntArrayBuffer.java 97 throw new BufferOverflowException();
119 throw new BufferOverflowException();
ReadWriteLongArrayBuffer.java 97 throw new BufferOverflowException();
119 throw new BufferOverflowException();
ReadWriteShortArrayBuffer.java 100 throw new BufferOverflowException();
122 throw new BufferOverflowException();
ReadWriteDirectByteBuffer.java 100 throw new BufferOverflowException();
129 throw new BufferOverflowException();
151 * @exception BufferOverflowException
166 throw new BufferOverflowException();
191 * @exception BufferOverflowException
206 throw new BufferOverflowException();
231 * @exception BufferOverflowException
246 throw new BufferOverflowException();
262 throw new BufferOverflowException();
282 throw new BufferOverflowException();
    [all...]
CharSequenceAdapter.java 140 throw new BufferOverflowException();
CharToByteBufferAdapter.java 185 throw new BufferOverflowException();
DoubleToByteBufferAdapter.java 186 throw new BufferOverflowException();
FloatToByteBufferAdapter.java 185 throw new BufferOverflowException();
IntToByteBufferAdapter.java 185 throw new BufferOverflowException();
LongToByteBufferAdapter.java 185 throw new BufferOverflowException();
ReadWriteHeapByteBuffer.java 97 throw new BufferOverflowException();
125 throw new BufferOverflowException();
159 throw new BufferOverflowException();
188 throw new BufferOverflowException();
208 throw new BufferOverflowException();
ShortToByteBufferAdapter.java 185 throw new BufferOverflowException();
ByteBuffer.java 701 * @exception BufferOverflowException
718 * @exception BufferOverflowException
741 * @exception BufferOverflowException
755 throw new BufferOverflowException();
771 * @exception BufferOverflowException
784 throw new BufferOverflowException();
817 * @exception BufferOverflowException
852 * @exception BufferOverflowException
887 * @exception BufferOverflowException
    [all...]
CharBuffer.java 446 * @exception BufferOverflowException
463 * @exception BufferOverflowException
486 * @exception BufferOverflowException
500 throw new BufferOverflowException();
516 * @exception BufferOverflowException
529 throw new BufferOverflowException();
564 * @exception BufferOverflowException
586 * @exception BufferOverflowException
600 throw new BufferOverflowException();
676 * @exception BufferOverflowException
    [all...]
DoubleBuffer.java 379 * @exception BufferOverflowException
396 * @exception BufferOverflowException
419 * @exception BufferOverflowException
433 throw new BufferOverflowException();
449 * @exception BufferOverflowException
462 throw new BufferOverflowException();
FloatBuffer.java 379 * @exception BufferOverflowException
396 * @exception BufferOverflowException
419 * @exception BufferOverflowException
433 throw new BufferOverflowException();
449 * @exception BufferOverflowException
462 throw new BufferOverflowException();
IntBuffer.java 367 * @exception BufferOverflowException
384 * @exception BufferOverflowException
407 * @exception BufferOverflowException
421 throw new BufferOverflowException();
437 * @exception BufferOverflowException
450 throw new BufferOverflowException();
LongBuffer.java 372 * @exception BufferOverflowException
389 * @exception BufferOverflowException
412 * @exception BufferOverflowException
426 throw new BufferOverflowException();
442 * @exception BufferOverflowException
455 throw new BufferOverflowException();
ShortBuffer.java 368 * @exception BufferOverflowException
385 * @exception BufferOverflowException
408 * @exception BufferOverflowException
422 throw new BufferOverflowException();
438 * @exception BufferOverflowException
451 throw new BufferOverflowException();
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 19 import java.nio.BufferOverflowException;
224 * @throws BufferOverflowException
234 BufferOverflowException, UnmappableCharacterException,
240 throw new BufferOverflowException();
  /libcore/luni/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetDecoderTest.java 25 import java.nio.BufferOverflowException;
183 throw new BufferOverflowException();
197 throw new BufferOverflowException();

Completed in 3022 milliseconds

1 2