Searched refs:OVERFLOW (Results 1 - 15 of 15) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
H A DCoderResultTest.java47 * Test the constant OVERFLOW and UNDERFLOW.
50 assertNotSame(CoderResult.OVERFLOW, CoderResult.UNDERFLOW);
52 assertNotNull(CoderResult.OVERFLOW);
53 assertFalse(CoderResult.OVERFLOW.isError());
54 assertFalse(CoderResult.OVERFLOW.isMalformed());
55 assertFalse(CoderResult.OVERFLOW.isUnderflow());
56 assertFalse(CoderResult.OVERFLOW.isUnmappable());
57 assertTrue(CoderResult.OVERFLOW.isOverflow());
58 assertTrue(CoderResult.OVERFLOW.toString().indexOf("OVERFLOW") !
[all...]
H A DCharsetDecoder2Test.java226 return CoderResult.OVERFLOW;
H A DCharsetEncoderTest.java763 assertSame(CoderResult.OVERFLOW, encoder.encode(in, out, true));
782 assertSame(CoderResult.OVERFLOW, encoder.encode(in, out, false));
1074 r = CoderResult.OVERFLOW;
1096 result = CoderResult.OVERFLOW;
H A DCharsetDecoderTest.java367 assertSame(CoderResult.OVERFLOW, decoder.decode(in, out, false));
830 r = CoderResult.OVERFLOW;
848 result = CoderResult.OVERFLOW;
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DAbstractWatchKey.java46 new Event<Object>(StandardWatchEventKinds.OVERFLOW, null);
110 // if the previous event is an OVERFLOW event or this is a
113 if ((prev.kind() == StandardWatchEventKinds.OVERFLOW) ||
139 // and queue an OVERFLOW event
141 kind = StandardWatchEventKinds.OVERFLOW;
152 } else if (kind == StandardWatchEventKinds.OVERFLOW) {
H A DAbstractPoller.java114 // OVERFLOW is ignored
115 if (event == StandardWatchEventKinds.OVERFLOW)
H A DPollingWatchService.java89 // OVERFLOW is ignored
90 if (event == StandardWatchEventKinds.OVERFLOW) {
H A DLinuxWatchService.java439 .signalEvent(StandardWatchEventKinds.OVERFLOW, null);
/libcore/ojluni/src/main/java/java/nio/file/
H A DStandardWatchEventKinds.java47 public static final WatchEvent.Kind<Object> OVERFLOW = field in class:StandardWatchEventKinds
48 new StdWatchEventKind<Object>("OVERFLOW", Object.class);
/libcore/luni/src/main/java/java/nio/charset/
H A DCharsetDecoderICU.java116 return CoderResult.OVERFLOW;
142 return CoderResult.OVERFLOW;
H A DCharsetEncoderICU.java145 return CoderResult.OVERFLOW;
172 return CoderResult.OVERFLOW;
/libcore/ojluni/src/main/java/java/nio/charset/
H A DCoderResult.java53 * unique result object {@link #OVERFLOW}, whose {@link #isOverflow()
94 = { "UNDERFLOW", "OVERFLOW", "MALFORMED", "UNMAPPABLE" };
191 public static final CoderResult OVERFLOW field in class:CoderResult
265 * If this object is {@link #OVERFLOW}
H A DCharsetDecoder.java487 * <li><p> {@link CoderResult#OVERFLOW} indicates that there is
607 return CoderResult.OVERFLOW;
637 * buffer then it returns {@link CoderResult#OVERFLOW}. If this happens
652 * {@link CoderResult#OVERFLOW}
688 * {@link CoderResult#OVERFLOW}
H A DCharsetEncoder.java505 * <li><p> {@link CoderResult#OVERFLOW} indicates that there is
625 return CoderResult.OVERFLOW;
655 * buffer then it returns {@link CoderResult#OVERFLOW}. If this happens
670 * {@link CoderResult#OVERFLOW}
706 * {@link CoderResult#OVERFLOW}
/libcore/ojluni/src/main/native/
H A Dfdlibm.h109 #define OVERFLOW 3 macro

Completed in 213 milliseconds