HomeSort by relevance Sort by last modified time
    Searched refs:BufferOverflowException (Results 1 - 25 of 50) 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() {
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...]
ReadWriteHeapByteBuffer.java 97 throw new BufferOverflowException();
125 throw new BufferOverflowException();
159 throw new BufferOverflowException();
188 throw new BufferOverflowException();
208 throw new 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();
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();
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...]
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
BufferOverflowExceptionTest.java 24 import java.nio.BufferOverflowException;
30 @TestTargetClass(BufferOverflowException.class)
46 method = "BufferOverflowException",
52 SerializationTest.verifySelf(new BufferOverflowException());
68 method = "BufferOverflowException",
74 SerializationTest.verifyGolden(this, new BufferOverflowException());
78 *@tests {@link java.nio.BufferOverflowException#BufferOverflowException()}
83 method = "BufferOverflowException",
87 BufferOverflowException exception = new BufferOverflowException()
    [all...]
DirectIntBufferTest.java 22 import java.nio.BufferOverflowException;
145 fail("BufferOverflowException expected but not thrown");
146 } catch (BufferOverflowException boe) {
153 fail("BufferOverflowException expected but not thrown");
161 fail("BufferOverflowException expected but not thrown");
162 } catch (BufferOverflowException boe) {
DirectShortBufferTest.java 22 import java.nio.BufferOverflowException;
146 fail("BufferOverflowException expected but not thrown");
147 } catch (BufferOverflowException boe) {
154 fail("BufferOverflowException expected but not thrown");
162 fail("BufferOverflowException expected but not thrown");
163 } catch (BufferOverflowException boe) {
WrappedCharBufferTest2.java 24 import java.nio.BufferOverflowException;
115 notes = "Verifies ReadOnlyBufferException, NullPointerException, BufferOverflowException, IndexOutOfBoundsException.",
135 fail("Should throw BufferOverflowException");
136 } catch (BufferOverflowException e) {
  /dalvik/tests/070-nio-buffer/src/
Main.java 17 import java.nio.BufferOverflowException;
55 } catch (BufferOverflowException boe) {
71 } catch (BufferOverflowException boe) {
78 * BufferOverflowException, floats work.
  /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/main/java/javax/crypto/
CipherSpi.java 361 } catch (java.nio.BufferOverflowException e) {
481 } catch (java.nio.BufferOverflowException e) {
  /libcore/luni/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetEncoderTest.java 25 import java.nio.BufferOverflowException;
181 throw new BufferOverflowException();
CharsetDecoderTest.java 25 import java.nio.BufferOverflowException;
183 throw new BufferOverflowException();
197 throw new BufferOverflowException();
  /frameworks/base/tests/CoreTests/android/core/
NIOTest.java 22 import java.nio.BufferOverflowException;
108 // BufferOverflowException: length > remaining()
114 } catch (BufferOverflowException e) {
126 } catch (BufferOverflowException e) {
420 // BufferOverflowException: length > remaining()
426 } catch (BufferOverflowException e) {
524 // BufferOverflowException: length > remaining()
530 } catch (BufferOverflowException e) {
628 // BufferOverflowException: length > remaining()
634 } catch (BufferOverflowException e)
    [all...]

Completed in 265 milliseconds

1 2