Lines Matching refs:errorCode
165 UErrorCode errorCode=U_ZERO_ERROR;
167 u_strToUTF8(NULL, 0, &length8, s, length, &errorCode);
168 if(U_SUCCESS(errorCode) || errorCode==U_BUFFER_OVERFLOW_ERROR) {
180 UErrorCode errorCode=U_ZERO_ERROR;
182 u_strToUTF8((char *)t, capacity, &length8, s, length, &errorCode);
183 if(U_SUCCESS(errorCode)) {