Home
last modified time | relevance | path

Searched refs:unmappableForLength (Results 1 – 6 of 6) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DCoderResultTest.java101 assertTrue(CoderResult.unmappableForLength(1).isError()); in testIsError()
112 assertFalse(CoderResult.unmappableForLength(1).isMalformed()); in testIsMalformed()
123 assertTrue(CoderResult.unmappableForLength(1).isUnmappable()); in testIsUnmappable()
134 assertFalse(CoderResult.unmappableForLength(1).isOverflow()); in testIsOverflow()
145 assertFalse(CoderResult.unmappableForLength(1).isUnderflow()); in testIsUnderflow()
167 assertEquals(CoderResult.unmappableForLength(1).length(), 1); in testLength()
180 .unmappableForLength(1)); in testMalformedForLength()
202 assertNotNull(CoderResult.unmappableForLength(Integer.MAX_VALUE)); in testUnmappableForLength()
203 assertNotNull(CoderResult.unmappableForLength(1)); in testUnmappableForLength()
204 assertSame(CoderResult.unmappableForLength(1), CoderResult in testUnmappableForLength()
[all …]
DCharsetDecoderTest.java818 return CoderResult.unmappableForLength("unmap".length()); in decodeLoop()
DCharsetEncoderTest.java1065 return CoderResult.unmappableForLength("unmap".length()); in encodeLoop()
/libcore/ojluni/src/main/java/java/nio/charset/
DCoderResult.java242 public static CoderResult unmappableForLength(int length) { in unmappableForLength() method in CoderResult
DCharset-X-Coder.java.template545 * <li><p> An {@linkplain CoderResult#unmappableForLength
/libcore/api/
Dcurrent.txt7179 method public static java.nio.charset.CoderResult unmappableForLength(int);