Home
last modified time | relevance | path

Searched refs:isUnmappable (Results 1 – 10 of 10) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DCoderResultTest.java56 assertFalse(CoderResult.OVERFLOW.isUnmappable()); in testConstants()
76 assertFalse(CoderResult.UNDERFLOW.isUnmappable()); in testConstants()
120 assertFalse(CoderResult.UNDERFLOW.isUnmappable()); in testIsUnmappable()
121 assertFalse(CoderResult.OVERFLOW.isUnmappable()); in testIsUnmappable()
122 assertFalse(CoderResult.malformedForLength(1).isUnmappable()); in testIsUnmappable()
123 assertTrue(CoderResult.unmappableForLength(1).isUnmappable()); in testIsUnmappable()
DASCIICharsetEncoderTest.java99 assertTrue(encoder.encode(buffer2, out, true).isUnmappable()); in testMultiStepEncode()
DCharsetDecoderTest.java417 assertTrue(result.isUnmappable()); in implTestDecodeCharBufferByteBufferUnmappedException()
DCharsetEncoderTest.java871 assertTrue(encoder.encode(in, out, endOfInput).isUnmappable()); in implTestEncodeCharBufferByteBufferbooleanException()
/libcore/ojluni/src/main/java/sun/util/
DPropertyResourceBundleCharset.java101 assert cr.isMalformed() || cr.isUnmappable(); in decodeLoop()
/libcore/ojluni/src/main/java/java/nio/charset/
DCoderResult.java158 public boolean isUnmappable() { in isUnmappable() method in CoderResult
DCharsetDecoder.java642 else if (cr.isUnmappable()) in decode()
DCharsetEncoder.java642 else if (cr.isUnmappable()) in encode()
DCharset-X-Coder.java.template642 else if (cr.isUnmappable())
/libcore/api/
Dcurrent.txt7175 method public boolean isUnmappable();