HomeSort by relevance Sort by last modified time
    Searched refs:BufferOverflowException (Results 1 - 25 of 74) 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() {
CharArrayBuffer.java 140 throw new BufferOverflowException();
160 throw new BufferOverflowException();
DoubleArrayBuffer.java 132 throw new BufferOverflowException();
152 throw new BufferOverflowException();
FloatArrayBuffer.java 133 throw new BufferOverflowException();
153 throw new BufferOverflowException();
IntArrayBuffer.java 132 throw new BufferOverflowException();
152 throw new BufferOverflowException();
LongArrayBuffer.java 132 throw new BufferOverflowException();
152 throw new BufferOverflowException();
ShortArrayBuffer.java 132 throw new BufferOverflowException();
152 throw new BufferOverflowException();
DoubleBuffer.java 363 * @throws BufferOverflowException
380 * @throws BufferOverflowException
403 * @throws BufferOverflowException
413 throw new BufferOverflowException();
429 * @throws BufferOverflowException
445 throw new BufferOverflowException();
FloatBuffer.java 362 * @throws BufferOverflowException
379 * @throws BufferOverflowException
402 * @throws BufferOverflowException
412 throw new BufferOverflowException();
428 * @throws BufferOverflowException
444 throw new BufferOverflowException();
IntBuffer.java 348 * @throws BufferOverflowException
365 * @throws BufferOverflowException
388 * @throws BufferOverflowException
401 throw new BufferOverflowException();
417 * @throws BufferOverflowException
433 throw new BufferOverflowException();
LongBuffer.java 352 * @throws BufferOverflowException
369 * @throws BufferOverflowException
392 * @throws BufferOverflowException
402 throw new BufferOverflowException();
418 * @throws BufferOverflowException
434 throw new BufferOverflowException();
ShortBuffer.java 351 * @throws BufferOverflowException
368 * @throws BufferOverflowException
391 * @throws BufferOverflowException
401 throw new BufferOverflowException();
417 * @throws BufferOverflowException
433 throw new BufferOverflowException();
CharBuffer.java 416 * @throws BufferOverflowException
433 * @throws BufferOverflowException
456 * @throws BufferOverflowException
466 throw new BufferOverflowException();
482 * @throws BufferOverflowException
498 throw new BufferOverflowException();
533 * @throws BufferOverflowException
555 * @throws BufferOverflowException
571 throw new BufferOverflowException();
643 * @throws BufferOverflowException
    [all...]
ByteArrayBuffer.java 247 throw new BufferOverflowException();
323 throw new BufferOverflowException();
352 throw new BufferOverflowException();
383 throw new BufferOverflowException();
405 throw new BufferOverflowException();
DirectByteBuffer.java 335 throw new BufferOverflowException();
411 throw new BufferOverflowException();
435 throw new BufferOverflowException();
459 throw new BufferOverflowException();
483 throw new BufferOverflowException();
507 throw new BufferOverflowException();
531 throw new BufferOverflowException();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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) {
CharBufferTest.java 21 import java.nio.BufferOverflowException;
450 } catch (BufferOverflowException e) {
472 } catch (BufferOverflowException e) {
498 } catch (BufferOverflowException e) {
543 } catch (BufferOverflowException expected) {
576 } catch (BufferOverflowException e) {
731 } catch (BufferOverflowException e) {
746 // Throw a BufferOverflowException and no character is transfered to
752 } catch (BufferOverflowException e) {
889 fail("should throw BufferOverflowException.")
    [all...]
DoubleBufferTest.java 20 import java.nio.BufferOverflowException;
431 } catch (BufferOverflowException e) {
453 } catch (BufferOverflowException e) {
468 } catch (BufferOverflowException e) {
513 } catch (BufferOverflowException expected) {
540 } catch (BufferOverflowException e) {
  /libcore/luni/src/main/java/java/nio/charset/
CoderResult.java 19 import java.nio.BufferOverflowException;
210 * @throws BufferOverflowException
220 BufferOverflowException, UnmappableCharacterException,
226 throw new BufferOverflowException();
  /art/test/070-nio-buffer/src/
Main.java 17 import java.nio.BufferOverflowException;
62 } catch (BufferOverflowException boe) {
78 } catch (BufferOverflowException boe) {
85 * BufferOverflowException, floats work.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetEncoder2Test.java 20 import java.nio.BufferOverflowException;
150 throw new BufferOverflowException();
CharsetDecoder2Test.java 20 import java.nio.BufferOverflowException;
160 throw new BufferOverflowException();
174 throw new BufferOverflowException();
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");
  /libcore/luni/src/main/java/javax/crypto/
CipherSpi.java 364 } catch (java.nio.BufferOverflowException e) {
547 } catch (java.nio.BufferOverflowException e) {

Completed in 738 milliseconds

1 2 3