HomeSort by relevance Sort by last modified time
    Searched full:bufferoverflowexception (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /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) {
FloatBufferTest.java 20 import java.nio.BufferOverflowException;
431 } catch (BufferOverflowException e) {
452 } catch (BufferOverflowException e) {
473 } catch (BufferOverflowException e) {
518 } catch (BufferOverflowException expected) {
544 } catch (BufferOverflowException e) {
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteBufferSink.java 21 import java.nio.BufferOverflowException;
43 } catch (BufferOverflowException e) {
54 } catch (BufferOverflowException e) {
RandomAccessFileDataSource.java 23 import java.nio.BufferOverflowException;
123 throw new BufferOverflowException();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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");
CharsetDecoder2Test.java 20 import java.nio.BufferOverflowException;
160 throw new BufferOverflowException();
174 throw new BufferOverflowException();
CharsetEncoder2Test.java 20 import java.nio.BufferOverflowException;
150 throw new BufferOverflowException();
  /libcore/ojluni/src/main/java/java/nio/
BufferOverflowException.java 40 public class BufferOverflowException
48 public BufferOverflowException() {
HeapCharBuffer.java 161 throw new BufferOverflowException();
178 throw new BufferOverflowException();
186 throw new BufferOverflowException();
HeapDoubleBuffer.java 156 throw new BufferOverflowException();
173 throw new BufferOverflowException();
181 throw new BufferOverflowException();
HeapFloatBuffer.java 155 throw new BufferOverflowException();
172 throw new BufferOverflowException();
180 throw new BufferOverflowException();
HeapIntBuffer.java 156 throw new BufferOverflowException();
173 throw new BufferOverflowException();
181 throw new BufferOverflowException();
HeapLongBuffer.java 157 throw new BufferOverflowException();
174 throw new BufferOverflowException();
182 throw new BufferOverflowException();
HeapShortBuffer.java 156 throw new BufferOverflowException();
173 throw new BufferOverflowException();
181 throw new BufferOverflowException();
CharBuffer.java 365 * @throws BufferOverflowException If this buffer's current position is not smaller than its
490 * BufferOverflowException} is thrown.
510 * @throws BufferOverflowException If there is insufficient space in this buffer
520 throw new BufferOverflowException();
533 * chars are transferred and a {@link BufferOverflowException} is
559 * @throws BufferOverflowException If there is insufficient space in this buffer
568 throw new BufferOverflowException();
587 * @throws BufferOverflowException If there is insufficient space in this buffer
603 * BufferOverflowException} is thrown.
630 * @throws BufferOverflowException If there is insufficient space in this buffe
    [all...]
DoubleBuffer.java 257 * @throws BufferOverflowException If this buffer's current position is not smaller than its
371 * BufferOverflowException} is thrown.
391 * @throws BufferOverflowException If there is insufficient space in this buffer
401 throw new BufferOverflowException();
414 * doubles are transferred and a {@link BufferOverflowException} is
440 * @throws BufferOverflowException If there is insufficient space in this buffer
449 throw new BufferOverflowException();
468 * @throws BufferOverflowException If there is insufficient space in this buffer
FloatBuffer.java 258 * @throws BufferOverflowException If this buffer's current position is not smaller than its
372 * BufferOverflowException} is thrown.
392 * @throws BufferOverflowException If there is insufficient space in this buffer
402 throw new BufferOverflowException();
415 * floats are transferred and a {@link BufferOverflowException} is
441 * @throws BufferOverflowException If there is insufficient space in this buffer
450 throw new BufferOverflowException();
469 * @throws BufferOverflowException If there is insufficient space in this buffer
IntBuffer.java 260 * @throws BufferOverflowException If this buffer's current position is not smaller than its
374 * BufferOverflowException} is thrown.
394 * @throws BufferOverflowException If there is insufficient space in this buffer
404 throw new BufferOverflowException();
417 * ints are transferred and a {@link BufferOverflowException} is
443 * @throws BufferOverflowException If there is insufficient space in this buffer
452 throw new BufferOverflowException();
471 * @throws BufferOverflowException If there is insufficient space in this buffer
LongBuffer.java 258 * @throws BufferOverflowException If this buffer's current position is not smaller than its
372 * BufferOverflowException} is thrown.
392 * @throws BufferOverflowException If there is insufficient space in this buffer
402 throw new BufferOverflowException();
415 * longs are transferred and a {@link BufferOverflowException} is
441 * @throws BufferOverflowException If there is insufficient space in this buffer
450 throw new BufferOverflowException();
469 * @throws BufferOverflowException If there is insufficient space in this buffer
ShortBuffer.java 259 * @throws BufferOverflowException If this buffer's current position is not smaller than its
373 * BufferOverflowException} is thrown.
393 * @throws BufferOverflowException If there is insufficient space in this buffer
403 throw new BufferOverflowException();
416 * shorts are transferred and a {@link BufferOverflowException} is
442 * @throws BufferOverflowException If there is insufficient space in this buffer
451 throw new BufferOverflowException();
470 * @throws BufferOverflowException If there is insufficient space in this buffer
  /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/luni/src/test/java/libcore/java/nio/
OldAndroidNIOTest.java 20 import java.nio.BufferOverflowException;
115 // BufferOverflowException: length > remaining()
121 } catch (BufferOverflowException e) {
133 } catch (BufferOverflowException e) {
430 // BufferOverflowException: length > remaining()
436 } catch (BufferOverflowException e) {
534 // BufferOverflowException: length > remaining()
540 } catch (BufferOverflowException e) {
638 // BufferOverflowException: length > remaining()
644 } catch (BufferOverflowException e)
    [all...]

Completed in 6422 milliseconds

1 2 3 4 5 6 7 8