Home
last modified time | relevance | path

Searched refs:isUnderflow (Results 1 – 13 of 13) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DCoderResultTest.java55 assertFalse(CoderResult.OVERFLOW.isUnderflow()); in testConstants()
75 assertTrue(CoderResult.UNDERFLOW.isUnderflow()); in testConstants()
142 assertTrue(CoderResult.UNDERFLOW.isUnderflow()); in testIsUnderflow()
143 assertFalse(CoderResult.OVERFLOW.isUnderflow()); in testIsUnderflow()
144 assertFalse(CoderResult.malformedForLength(1).isUnderflow()); in testIsUnderflow()
145 assertFalse(CoderResult.unmappableForLength(1).isUnderflow()); in testIsUnderflow()
DCharsetEncoder2Test.java168 assertTrue(result.isUnderflow()); in test_EncodeLjava_nio_CharBufferLjava_nio_ByteBufferB()
172 assertTrue(result.isUnderflow()); in test_EncodeLjava_nio_CharBufferLjava_nio_ByteBufferB()
DCharsetDecoder2Test.java201 assertTrue(result.isUnderflow()); in testDecodeLjava_nio_ByteBuffer_ReplaceOverflow()
/libcore/ojluni/src/main/java/java/util/zip/
DZipCoder.java64 if (!cr.isUnderflow()) in toString()
67 if (!cr.isUnderflow()) in toString()
94 if (!cr.isUnderflow()) in getBytes()
97 if (!cr.isUnderflow()) in getBytes()
/libcore/ojluni/src/main/java/java/nio/charset/
DCharsetDecoder.java591 if (cr.isUnderflow()) { in decode()
671 if (cr.isUnderflow()) in flush()
805 if (cr.isUnderflow()) in decode()
808 if (cr.isUnderflow()) in decode()
DCharsetEncoder.java608 if (cr.isUnderflow()) { in encode()
688 if (cr.isUnderflow()) in flush()
822 if (cr.isUnderflow()) in encode()
825 if (cr.isUnderflow()) in encode()
DCoderResult.java119 public boolean isUnderflow() { in isUnderflow() method in CoderResult
/libcore/ojluni/src/main/java/sun/nio/cs/
DStreamEncoder.java243 if (cr.isUnderflow()) { in flushLeftoverChar()
272 if (cr.isUnderflow()) { in implWrite()
305 if (cr.isUnderflow()) in implClose()
DStreamDecoder.java332 if (cr.isUnderflow()) { in implRead()
348 if (cr.isUnderflow()) { in implRead()
386 if (!cr.isUnderflow()) { in implRead()
/libcore/luni/src/test/java/libcore/java/nio/charset/
DCharsetDecoderTest.java120 assertTrue(cr.isUnderflow()); in testBufferWithNonZeroOffset()
DCharsetEncoderTest.java226 assertTrue(result.isUnderflow());
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixPath.java140 if (!cr.isUnderflow()) { in encode()
144 error = !cr.isUnderflow(); in encode()
/libcore/ojluni/src/main/java/java/net/
DURI.java2859 assert cr.isUnderflow(); in decode()
2861 assert cr.isUnderflow(); in decode()