Searched refs:unmappableForLength (Results 1 – 6 of 6) sorted by relevance
101 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 …]
818 return CoderResult.unmappableForLength("unmap".length()); in decodeLoop()
1065 return CoderResult.unmappableForLength("unmap".length()); in encodeLoop()
242 public static CoderResult unmappableForLength(int length) { in unmappableForLength() method in CoderResult
545 * <li><p> An {@linkplain CoderResult#unmappableForLength
7179 method public static java.nio.charset.CoderResult unmappableForLength(int);