Searched defs:onMalformedInput (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/charset/
H A DCharsetDecoder.java112 * #onMalformedInput(CodingErrorAction) onMalformedInput} method; the
377 public final CharsetDecoder onMalformedInput(CodingErrorAction newAction) { method in class:CharsetDecoder
500 * {@linkplain #onMalformedInput malformed action} of this decoder
H A DCharsetEncoder.java112 * #onMalformedInput(CodingErrorAction) onMalformedInput} method; the
363 dec.onMalformedInput(CodingErrorAction.REPORT);
400 public final CharsetEncoder onMalformedInput(CodingErrorAction newAction) { method in class:CharsetEncoder
523 * {@linkplain #onMalformedInput malformed action} of this encoder
935 onMalformedInput(CodingErrorAction.REPORT);
941 onMalformedInput(ma);
/libcore/luni/src/main/java/libcore/icu/
H A DNativeConverter.java70 private static native void setCallbackDecode(long converterHandle, int onMalformedInput, int onUnmappableInput, String subChars); argument
78 private static native void setCallbackEncode(long converterHandle, int onMalformedInput, int onUnmappableInput, byte[] subBytes); argument
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeConverter.cpp51 UConverterToUCallback onMalformedInput; member in struct:DecoderCallbackContext
58 UConverterFromUCallback onMalformedInput; member in struct:EncoderCallbackContext
385 ctx->onMalformedInput(ctx, args, codeUnits, length, codePoint, reason, status);
417 jint onMalformedInput, jint onUnmappableInput, jbyteArray javaReplacement) {
439 callbackContext->onMalformedInput = getFromUCallback(onMalformedInput);
499 ctx->onMalformedInput(ctx, args, codeUnits, length, reason, status);
511 jint onMalformedInput, jint onUnmappableInput, jstring javaReplacement) {
533 callbackContext->onMalformedInput = getToUCallback(onMalformedInput);
416 NativeConverter_setCallbackEncode(JNIEnv* env, jclass, jlong address, jint onMalformedInput, jint onUnmappableInput, jbyteArray javaReplacement) argument
510 NativeConverter_setCallbackDecode(JNIEnv* env, jclass, jlong address, jint onMalformedInput, jint onUnmappableInput, jstring javaReplacement) argument
[all...]

Completed in 64 milliseconds