Home
last modified time | relevance | path

Searched refs:U_BUFFER_OVERFLOW_ERROR (Results 1 – 6 of 6) sorted by relevance

/libcore/luni/src/main/native/
DIcuUtilities.cpp60 } else if (error == U_INDEX_OUTOFBOUNDS_ERROR || error == U_BUFFER_OVERFLOW_ERROR) { in maybeThrowIcuException()
Dlibcore_icu_NativeConverter.cpp176 return (error != U_BUFFER_OVERFLOW_ERROR && error != U_TRUNCATED_CHAR_FOUND); in shouldCodecThrow()
178 …return (error != U_BUFFER_OVERFLOW_ERROR && error != U_INVALID_CHAR_FOUND && error != U_ILLEGAL_CH… in shouldCodecThrow()
Dlibcore_icu_NativeDecimalFormat.cpp185 if (status == U_BUFFER_OVERFLOW_ERROR) { in NativeDecimalFormat_getTextAttribute()
/libcore/luni/src/main/java/java/nio/charset/
DCharsetDecoderICU.java114 if (error == ICU.U_BUFFER_OVERFLOW_ERROR) { in implFlush()
140 if (error == ICU.U_BUFFER_OVERFLOW_ERROR) { in decodeLoop()
DCharsetEncoderICU.java142 if (error == ICU.U_BUFFER_OVERFLOW_ERROR) { in implFlush()
169 if (error == ICU.U_BUFFER_OVERFLOW_ERROR) { in encodeLoop()
/libcore/luni/src/main/java/libcore/icu/
DICU.java368 public static final int U_BUFFER_OVERFLOW_ERROR = 15; field in ICU