Home
last modified time | relevance | path

Searched refs:REPLACE (Results 1 – 19 of 19) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DCodingErrorActionTest.java47 assertNotNull(CodingErrorAction.REPLACE); in testIGNORE()
49 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPLACE); in testIGNORE()
51 assertNotSame(CodingErrorAction.REPLACE, CodingErrorAction.REPORT); in testIGNORE()
59 assertTrue(CodingErrorAction.REPLACE.toString().indexOf("REPLACE") != -1); in testToString()
DCharsetDecoder2Test.java110 cs1.newDecoder().onMalformedInput(CodingErrorAction.REPLACE) in test_decodeLjava_nio_ByteBuffer()
111 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode( in test_decodeLjava_nio_ByteBuffer()
186 decoder.onMalformedInput(CodingErrorAction.REPLACE); in testDecodeLjava_nio_ByteBuffer_ReplaceOverflow()
DCharsetEncoderTest.java591 encoder.onMalformedInput(CodingErrorAction.REPLACE); in testEncodeCharBuffer()
652 encoder.onMalformedInput(CodingErrorAction.REPLACE); in testEncodeCharBufferException()
677 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE); in testEncodeCharBufferException()
855 encoder.onMalformedInput(CodingErrorAction.REPLACE); in implTestEncodeCharBufferByteBufferbooleanException()
884 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE); in implTestEncodeCharBufferByteBufferbooleanException()
DCharsetDecoderTest.java263 decoder.onMalformedInput(CodingErrorAction.REPLACE); in testDecodeByteBufferException()
287 decoder.onUnmappableCharacter(CodingErrorAction.REPLACE); in testDecodeByteBufferException()
429 decoder.onUnmappableCharacter(CodingErrorAction.REPLACE); in implTestDecodeCharBufferByteBufferUnmappedException()
482 decoder.onMalformedInput(CodingErrorAction.REPLACE); in implTestDecodeCharBufferByteBufferMalformedException()
/libcore/luni/src/test/java/libcore/java/nio/charset/
DOldCharset_SingleByteAbstractTest.java51 decoder.onMalformedInput(CodingErrorAction.REPLACE); in dumpDecoded()
67 decoder.onMalformedInput(CodingErrorAction.REPLACE); in decodeReplace()
68 decoder.onUnmappableCharacter(CodingErrorAction.REPLACE); in decodeReplace()
107 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE); in test_Encode()
DCharsetEncoderTest.java34 e.onMalformedInput(CodingErrorAction.REPLACE); in test_replaceWith()
35 e.onUnmappableCharacter(CodingErrorAction.REPLACE); in test_replaceWith()
100 testCharsetEncoderSplitSurrogates(CodingErrorAction.REPLACE); in testCharsetEncoderSplitSurrogates_REPLACE()
DCharsetDecoderTest.java33 d.onMalformedInput(CodingErrorAction.REPLACE); in test_replaceWith()
34 d.onUnmappableCharacter(CodingErrorAction.REPLACE); in test_replaceWith()
DCharset_TestGenerator.java221 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE); in genEncoded()
/libcore/ojluni/src/main/java/java/nio/charset/
DCharset.java875 .onMalformedInput(CodingErrorAction.REPLACE)
876 .onUnmappableCharacter(CodingErrorAction.REPLACE)
911 .onMalformedInput(CodingErrorAction.REPLACE)
912 .onUnmappableCharacter(CodingErrorAction.REPLACE)
DCodingErrorAction.java63 public static final CodingErrorAction REPLACE field in CodingErrorAction
DCharsetDecoder.java650 if (action == CodingErrorAction.REPLACE) { in decode()
657 || (action == CodingErrorAction.REPLACE)) { in decode()
DCharsetEncoder.java650 if (action == CodingErrorAction.REPLACE) { in encode()
657 || (action == CodingErrorAction.REPLACE)) { in encode()
DCharset-X-Coder.java.template95 * the returned {@link CoderResult} object, or {@linkplain CodingErrorAction#REPLACE
650 if (action == CodingErrorAction.REPLACE) {
657 || (action == CodingErrorAction.REPLACE)) {
/libcore/ojluni/src/main/java/sun/nio/cs/
DStreamEncoder.java189 .onMalformedInput(CodingErrorAction.REPLACE) in StreamEncoder()
190 .onUnmappableCharacter(CodingErrorAction.REPLACE)); in StreamEncoder()
DStreamDecoder.java236 .onMalformedInput(CodingErrorAction.REPLACE) in StreamDecoder()
237 .onUnmappableCharacter(CodingErrorAction.REPLACE)); in StreamDecoder()
/libcore/luni/src/test/java/libcore/java/lang/
DStringTest.java320 decoder.onMalformedInput(CodingErrorAction.REPLACE); in test_69599767()
458 .onMalformedInput(CodingErrorAction.REPLACE); in assertFastPathUtf8DecodedEquals()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DInputStreamReaderTest.java399 decoder3.onMalformedInput(CodingErrorAction.REPLACE); in test_read_1()
/libcore/ojluni/src/main/java/java/net/
DURI.java2830 .onMalformedInput(CodingErrorAction.REPLACE) in decode()
2831 .onUnmappableCharacter(CodingErrorAction.REPLACE); in decode()
/libcore/api/
Dcurrent.txt7327 field public static final java.nio.charset.CodingErrorAction REPLACE;