Lines Matching defs:errorCode
951 UErrorCode errorCode = U_ZERO_ERROR;
957 UNumberFormat* unum = unum_open( UNUM_DECIMAL /*or UNUM_DEFAULT*/, NULL, -1, NULL, NULL, &errorCode);
959 UNumberFormat* unum = unum_open( UNUM_PATTERN_DECIMAL /*needs pattern*/, pat, -1, NULL, NULL, &errorCode);
962 dbl = unum_parseDouble( unum, input, -1 /*u_strlen(input)*/, 0 /* 0 = start */, &errorCode );
963 if (U_FAILURE(errorCode)) {
964 log_data_err("Result - %s\n", u_errorName(errorCode));