Home
last modified time | relevance | path

Searched refs:IGNORE (Results 1 – 9 of 9) 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/support/src/test/java/tests/support/
DSupport_Configuration.java303 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5; in load() local
330 mode = IGNORE; // Ignore whitespace on the next line in load()
367 mode = IGNORE; // Ignore whitespace on the next line in load()
395 mode = IGNORE; in load()
397 if (buffer.length() == 0 || mode == IGNORE) { in load()
405 if (mode == IGNORE || mode == CONTINUE) { in load()
/libcore/luni/src/main/java/java/nio/charset/
DCodingErrorAction.java29 public static final CodingErrorAction IGNORE = new CodingErrorAction( field in CodingErrorAction
/libcore/luni/src/main/java/java/util/
DProperties.java87 KEY_DONE = 4, IGNORE = 5; field in Properties
323 mode = IGNORE; // Ignore whitespace on the next line in load()
365 mode = IGNORE; // Ignore whitespace on the next line in load()
400 mode = IGNORE; in load()
403 if (offset == 0 || offset == keyLength || mode == IGNORE) { in load()
411 if (mode == IGNORE || mode == CONTINUE) { in load()
/libcore/luni/src/main/java/libcore/icu/
DNativeConverter.java46 } else if (action == CodingErrorAction.IGNORE) { in translateCodingErrorAction()
/libcore/luni/src/test/java/libcore/java/nio/charset/
DCharsetEncoderTest.java90 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()