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

/libcore/luni/src/main/java/libcore/icu/
H A DNativeConverter.java61 private static native void setCallbackDecode(long converterHandle, int onMalformedInput, int onUnmappableInput, String subChars); argument
69 private static native void setCallbackEncode(long converterHandle, int onMalformedInput, int onUnmappableInput, byte[] subBytes); argument
/libcore/luni/src/main/java/java/nio/charset/
H A DCharsetDecoder.java67 * {@link #onMalformedInput(CodingErrorAction) onMalformedInput} method and
560 public final CharsetDecoder onMalformedInput(CodingErrorAction newAction) { method in class:CharsetDecoder
H A DCharsetEncoder.java60 * for each of the two kinds of error can be set independently using the {@link #onMalformedInput}
203 onMalformedInput(CodingErrorAction.REPORT);
213 onMalformedInput(originalMalformedInputAction);
554 decoder.onMalformedInput(CodingErrorAction.REPORT);
592 public final CharsetEncoder onMalformedInput(CodingErrorAction newAction) { method in class:CharsetEncoder
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeConverter.cpp50 UConverterToUCallback onMalformedInput; member in struct:DecoderCallbackContext
57 UConverterFromUCallback onMalformedInput; member in struct:EncoderCallbackContext
356 ctx->onMalformedInput(ctx, args, codeUnits, length, codePoint, reason, status);
388 jint onMalformedInput, jint onUnmappableInput, jbyteArray javaReplacement) {
405 callbackContext->onMalformedInput = getFromUCallback(onMalformedInput);
460 ctx->onMalformedInput(ctx, args, codeUnits, length, reason, status);
472 jint onMalformedInput, jint onUnmappableInput, jstring javaReplacement) {
489 callbackContext->onMalformedInput = getToUCallback(onMalformedInput);
387 NativeConverter_setCallbackEncode(JNIEnv* env, jclass, jlong address, jint onMalformedInput, jint onUnmappableInput, jbyteArray javaReplacement) argument
471 NativeConverter_setCallbackDecode(JNIEnv* env, jclass, jlong address, jint onMalformedInput, jint onUnmappableInput, jstring javaReplacement) argument
[all...]

Completed in 916 milliseconds