Home
last modified time | relevance | path

Searched refs:IGNORE (Results 1 – 8 of 8) 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.java92 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE)); in testDefaultValue()
93 assertSame(encoder, encoder.onUnmappableCharacter(CodingErrorAction.IGNORE)); in testDefaultValue()
116 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE)); in testCharsetEncoderCharsetfloatfloat()
118 .onUnmappableCharacter(CodingErrorAction.IGNORE)); in testCharsetEncoderCharsetfloatfloat()
643 encoder.onMalformedInput(CodingErrorAction.IGNORE); in testEncodeCharBufferException()
668 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in testEncodeCharBufferException()
844 encoder.onMalformedInput(CodingErrorAction.IGNORE); in implTestEncodeCharBufferByteBufferbooleanException()
873 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in implTestEncodeCharBufferByteBufferbooleanException()
963 encoder.onMalformedInput(CodingErrorAction.IGNORE); in testOnMalformedInput()
964 assertSame(CodingErrorAction.IGNORE, encoder.malformedInputAction()); in testOnMalformedInput()
[all …]
DCharsetDecoderTest.java154 decoder.onMalformedInput(CodingErrorAction.IGNORE); in testOnMalformedInput()
155 assertSame(CodingErrorAction.IGNORE, decoder.malformedInputAction()); in testOnMalformedInput()
169 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in testOnUnmappableCharacter()
170 assertSame(CodingErrorAction.IGNORE, decoder in testOnUnmappableCharacter()
254 decoder.onMalformedInput(CodingErrorAction.IGNORE); in testDecodeByteBufferException()
278 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in testDecodeByteBufferException()
420 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE); in implTestDecodeCharBufferByteBufferUnmappedException()
473 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.java617 if ((action == CodingErrorAction.IGNORE) in decode()
/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()