Home | History | Annotate | Download | only in common

Lines Matching refs:errorCode

81                              UErrorCode &errorCode) {
83 if(U_SUCCESS(errorCode)) {
88 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
98 doCodepageCreate(src, srcLength, cnv, errorCode);
101 cnv=u_getDefaultConverter(&errorCode);
102 doCodepageCreate(src, srcLength, cnv, errorCode);
108 if(U_FAILURE(errorCode)) {
209 UErrorCode &errorCode) const
211 if(U_FAILURE(errorCode)) {
216 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
222 return u_terminateChars(dest, destCapacity, 0, &errorCode);
229 cnv=u_getDefaultConverter(&errorCode);
230 if(U_FAILURE(errorCode)) {
239 int32_t len=doExtract(0, length(), dest, destCapacity, cnv, errorCode);
253 UErrorCode &errorCode) const
255 if(U_FAILURE(errorCode)) {
278 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &errorCode);
282 if(errorCode==U_BUFFER_OVERFLOW_ERROR) {
288 errorCode=U_ZERO_ERROR;
289 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &errorCode);
291 } while(errorCode==U_BUFFER_OVERFLOW_ERROR);
294 return u_terminateChars(originalDest, destCapacity, length, &errorCode);