OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BufferOverflowException
(Results
1 - 25
of
37
) 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
96
throw new
BufferOverflowException
();
112
throw new
BufferOverflowException
();
ReadWriteDoubleArrayBuffer.java
97
throw new
BufferOverflowException
();
113
throw new
BufferOverflowException
();
ReadWriteFloatArrayBuffer.java
97
throw new
BufferOverflowException
();
113
throw new
BufferOverflowException
();
ReadWriteIntArrayBuffer.java
96
throw new
BufferOverflowException
();
112
throw new
BufferOverflowException
();
ReadWriteLongArrayBuffer.java
96
throw new
BufferOverflowException
();
112
throw new
BufferOverflowException
();
ReadWriteShortArrayBuffer.java
98
throw new
BufferOverflowException
();
114
throw new
BufferOverflowException
();
Buffer.java
189
throw new
BufferOverflowException
();
CharToByteBufferAdapter.java
146
throw new
BufferOverflowException
();
DoubleToByteBufferAdapter.java
146
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
();
FloatToByteBufferAdapter.java
145
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
();
IntToByteBufferAdapter.java
146
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
();
LongToByteBufferAdapter.java
146
throw new
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
();
ReadWriteHeapByteBuffer.java
98
throw new
BufferOverflowException
();
166
throw new
BufferOverflowException
();
197
throw new
BufferOverflowException
();
222
throw new
BufferOverflowException
();
240
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
();
ShortToByteBufferAdapter.java
145
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
...]
DoubleBuffer.java
365
* @exception
BufferOverflowException
382
* @exception
BufferOverflowException
405
* @exception
BufferOverflowException
415
throw new
BufferOverflowException
();
431
* @exception
BufferOverflowException
444
throw new
BufferOverflowException
();
/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
();
/external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetDecoderTest.java
20
import java.nio.
BufferOverflowException
;
160
throw new
BufferOverflowException
();
174
throw new
BufferOverflowException
();
CharsetEncoderTest.java
20
import java.nio.
BufferOverflowException
;
150
throw new
BufferOverflowException
();
Completed in 639 milliseconds
1
2