Searched refs:IGNORE (Results 1 - 8 of 8) sorted by relevance

/libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
H A DCodingErrorActionTest.java46 assertNotNull(CodingErrorAction.IGNORE);
49 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPLACE);
50 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPORT);
58 assertTrue(CodingErrorAction.IGNORE.toString().indexOf("IGNORE") != -1);
H A DCharsetEncoderTest.java92 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE));
93 assertSame(encoder, encoder.onUnmappableCharacter(CodingErrorAction.IGNORE));
116 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE));
118 .onUnmappableCharacter(CodingErrorAction.IGNORE));
653 encoder.onMalformedInput(CodingErrorAction.IGNORE);
678 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
854 encoder.onMalformedInput(CodingErrorAction.IGNORE);
883 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
973 encoder.onMalformedInput(CodingErrorAction.IGNORE);
974 assertSame(CodingErrorAction.IGNORE, encode
[all...]
H A DCharsetDecoderTest.java154 decoder.onMalformedInput(CodingErrorAction.IGNORE);
155 assertSame(CodingErrorAction.IGNORE, decoder.malformedInputAction());
169 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
170 assertSame(CodingErrorAction.IGNORE, decoder
254 decoder.onMalformedInput(CodingErrorAction.IGNORE);
278 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
420 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
473 decoder.onMalformedInput(CodingErrorAction.IGNORE);
/libcore/luni/src/main/java/java/nio/charset/
H A DCodingErrorAction.java21 * errors. Currently three actions are defined: {@code IGNORE}, {@code REPLACE}
29 public static final CodingErrorAction IGNORE = new CodingErrorAction( field in class:CodingErrorAction
30 "IGNORE");
/libcore/support/src/test/java/tests/support/
H A DSupport_Configuration.java305 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
332 mode = IGNORE; // Ignore whitespace on the next line
369 mode = IGNORE; // Ignore whitespace on the next line
397 mode = IGNORE;
399 if (buffer.length() == 0 || mode == IGNORE) {
407 if (mode == IGNORE || mode == CONTINUE) {
/libcore/luni/src/main/java/libcore/icu/
H A DNativeConverter.java46 } else if (action == CodingErrorAction.IGNORE) {
/libcore/luni/src/main/java/java/util/
H A DProperties.java87 KEY_DONE = 4, IGNORE = 5; field in class:Properties
323 mode = IGNORE; // Ignore whitespace on the next line
365 mode = IGNORE; // Ignore whitespace on the next line
400 mode = IGNORE;
403 if (offset == 0 || offset == keyLength || mode == IGNORE) {
411 if (mode == IGNORE || mode == CONTINUE) {
/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharsetEncoderTest.java90 testCharsetEncoderSplitSurrogates(CodingErrorAction.IGNORE);
109 // IGNORE just ignores both characters, REPORT complains that the second is

Completed in 4453 milliseconds