Home
last modified time | relevance | path

Searched refs:IGNORE (Results 1 – 11 of 11) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DCodingErrorActionTest.java46 assertNotNull(CodingErrorAction.IGNORE); in testIGNORE()
49 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPLACE); in testIGNORE()
50 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPORT); in testIGNORE()
58 assertTrue(CodingErrorAction.IGNORE.toString().indexOf("IGNORE") != -1); in testToString()
DCharsetEncoderTest.java95 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE)); in testDefaultValue()
96 assertSame(encoder, encoder.onUnmappableCharacter(CodingErrorAction.IGNORE)); in testDefaultValue()
119 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE)); in testCharsetEncoderCharsetfloatfloat()
121 .onUnmappableCharacter(CodingErrorAction.IGNORE)); in testCharsetEncoderCharsetfloatfloat()
646 encoder.onMalformedInput(CodingErrorAction.IGNORE); in testEncodeCharBufferException()
671 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in testEncodeCharBufferException()
847 encoder.onMalformedInput(CodingErrorAction.IGNORE); in implTestEncodeCharBufferByteBufferbooleanException()
876 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in implTestEncodeCharBufferByteBufferbooleanException()
966 encoder.onMalformedInput(CodingErrorAction.IGNORE); in testOnMalformedInput()
967 assertSame(CodingErrorAction.IGNORE, encoder.malformedInputAction()); in testOnMalformedInput()
[all …]
DCharsetDecoderTest.java157 decoder.onMalformedInput(CodingErrorAction.IGNORE); in testOnMalformedInput()
158 assertSame(CodingErrorAction.IGNORE, decoder.malformedInputAction()); in testOnMalformedInput()
172 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in testOnUnmappableCharacter()
173 assertSame(CodingErrorAction.IGNORE, decoder in testOnUnmappableCharacter()
257 decoder.onMalformedInput(CodingErrorAction.IGNORE); in testDecodeByteBufferException()
281 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in testDecodeByteBufferException()
422 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in implTestDecodeCharBufferByteBufferUnmappedException()
475 decoder.onMalformedInput(CodingErrorAction.IGNORE); in implTestDecodeCharBufferByteBufferMalformedException()
/libcore/ojluni/src/main/java/java/nio/charset/
DCodingErrorAction.java55 public static final CodingErrorAction IGNORE field in CodingErrorAction
DCharsetDecoder.java656 if ((action == CodingErrorAction.IGNORE) in decode()
DCharsetEncoder.java656 if ((action == CodingErrorAction.IGNORE) in encode()
DCharset-X-Coder.java.template93 * CodingErrorAction#IGNORE ignore} the erroneous input, {@linkplain
656 if ((action == CodingErrorAction.IGNORE)
/libcore/luni/src/test/java/libcore/java/nio/charset/
DStandardCharsetsEncoderTest.java142 encoder.onMalformedInput(CodingErrorAction.IGNORE); in dumpEncodings()
143 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in dumpEncodings()
DCharsetEncoderTest.java92 testCharsetEncoderSplitSurrogates(CodingErrorAction.IGNORE); in testCharsetEncoderSplitSurrogates_IGNORE()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DInputStreamReaderTest.java393 decoder2.onMalformedInput(CodingErrorAction.IGNORE); in test_read_1()
/libcore/api/
Dcurrent.txt7185 field public static final java.nio.charset.CodingErrorAction IGNORE;