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

1 2 3

  /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 85 throw new BufferOverflowException();
146 throw new BufferOverflowException();
164 throw new BufferOverflowException();
182 throw new BufferOverflowException();
200 throw new BufferOverflowException();
218 throw new BufferOverflowException();
236 throw new BufferOverflowException();
ReadWriteCharArrayBuffer.java 93 throw new BufferOverflowException();
109 throw new BufferOverflowException();
ReadWriteDoubleArrayBuffer.java 94 throw new BufferOverflowException();
110 throw new BufferOverflowException();
ReadWriteFloatArrayBuffer.java 94 throw new BufferOverflowException();
110 throw new BufferOverflowException();
ReadWriteIntArrayBuffer.java 93 throw new BufferOverflowException();
109 throw new BufferOverflowException();
ReadWriteLongArrayBuffer.java 93 throw new BufferOverflowException();
109 throw new BufferOverflowException();
ReadWriteShortArrayBuffer.java 95 throw new BufferOverflowException();
111 throw new BufferOverflowException();
ReadWriteHeapByteBuffer.java 95 throw new BufferOverflowException();
163 throw new BufferOverflowException();
194 throw new BufferOverflowException();
219 throw new BufferOverflowException();
237 throw new BufferOverflowException();
DoubleBuffer.java 365 * @exception BufferOverflowException
382 * @exception BufferOverflowException
405 * @exception BufferOverflowException
415 throw new BufferOverflowException();
431 * @exception BufferOverflowException
444 throw new BufferOverflowException();
FloatBuffer.java 364 * @exception BufferOverflowException
381 * @exception BufferOverflowException
404 * @exception BufferOverflowException
414 throw new BufferOverflowException();
430 * @exception BufferOverflowException
443 throw new BufferOverflowException();
IntBuffer.java 350 * @exception BufferOverflowException
367 * @exception BufferOverflowException
390 * @exception BufferOverflowException
400 throw new BufferOverflowException();
416 * @exception BufferOverflowException
429 throw new BufferOverflowException();
LongBuffer.java 354 * @exception BufferOverflowException
371 * @exception BufferOverflowException
394 * @exception BufferOverflowException
404 throw new BufferOverflowException();
420 * @exception BufferOverflowException
433 throw new BufferOverflowException();
ShortBuffer.java 353 * @exception BufferOverflowException
370 * @exception BufferOverflowException
393 * @exception BufferOverflowException
403 throw new BufferOverflowException();
419 * @exception BufferOverflowException
432 throw new BufferOverflowException();
CharBuffer.java 427 * @exception BufferOverflowException
444 * @exception BufferOverflowException
467 * @exception BufferOverflowException
477 throw new BufferOverflowException();
493 * @exception BufferOverflowException
506 throw new BufferOverflowException();
541 * @exception BufferOverflowException
563 * @exception BufferOverflowException
576 throw new BufferOverflowException();
650 * @exception BufferOverflowException
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
BufferOverflowExceptionTest.java 19 import java.nio.BufferOverflowException;
32 SerializationTest.verifySelf(new BufferOverflowException());
40 SerializationTest.verifyGolden(this, new BufferOverflowException());
44 *@tests {@link java.nio.BufferOverflowException#BufferOverflowException()}
47 BufferOverflowException exception = new BufferOverflowException();
WrappedCharBufferTest2.java 19 import java.nio.BufferOverflowException;
96 fail("Should throw BufferOverflowException"); //$NON-NLS-1$
98 } catch (BufferOverflowException expected) {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
StringSerializer.java 37 import java.nio.BufferOverflowException;
95 catch (BufferOverflowException e) {
FieldSerializer.java 40 import java.nio.BufferOverflowException;
179 } catch (BufferOverflowException boe) {
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 19 import java.nio.BufferOverflowException;
223 * @throws BufferOverflowException
233 BufferOverflowException, UnmappableCharacterException,
239 throw new BufferOverflowException();
  /dalvik/tests/070-nio-buffer/src/
Main.java 17 import java.nio.BufferOverflowException;
62 } catch (BufferOverflowException boe) {
78 } catch (BufferOverflowException boe) {
85 * BufferOverflowException, floats work.
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetEncoderTest.java 20 import java.nio.BufferOverflowException;
150 throw new BufferOverflowException();
CharsetDecoderTest.java 20 import java.nio.BufferOverflowException;
160 throw new BufferOverflowException();
174 throw new BufferOverflowException();
  /libcore/luni/src/main/java/javax/crypto/
CipherSpi.java 364 } catch (java.nio.BufferOverflowException e) {
484 } catch (java.nio.BufferOverflowException e) {
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CoderResultTest.java 19 import java.nio.BufferOverflowException;
61 fail("Should throw BufferOverflowException");
62 } catch (BufferOverflowException ex) {
81 fail("Should throw BufferOverflowException");
229 fail("Should throw BufferOverflowException");
230 } catch (BufferOverflowException ex) {
235 fail("Should throw BufferOverflowException");

Completed in 254 milliseconds

1 2 3