Searched refs:IGNORE (Results 1 – 9 of 9) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
D | CodingErrorActionTest.java | 46 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()
|
D | CharsetEncoderTest.java | 92 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 …]
|
D | CharsetDecoderTest.java | 154 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/ |
D | Support_Configuration.java | 303 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/ |
D | CodingErrorAction.java | 29 public static final CodingErrorAction IGNORE = new CodingErrorAction( field in CodingErrorAction
|
/libcore/luni/src/main/java/java/util/ |
D | Properties.java | 87 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/ |
D | NativeConverter.java | 46 } else if (action == CodingErrorAction.IGNORE) { in translateCodingErrorAction()
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
D | CharsetEncoderTest.java | 90 testCharsetEncoderSplitSurrogates(CodingErrorAction.IGNORE); in testCharsetEncoderSplitSurrogates_IGNORE()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | InputStreamReaderTest.java | 393 decoder2.onMalformedInput(CodingErrorAction.IGNORE); in test_read_1()
|