Home | History | Annotate | Download | only in cintltst

Lines Matching refs:errorCode

967     UErrorCode errorCode = U_ZERO_ERROR;
973 UNumberFormat* unum = unum_open( UNUM_DECIMAL /*or UNUM_DEFAULT*/, NULL, -1, NULL, NULL, &errorCode);
975 UNumberFormat* unum = unum_open( UNUM_PATTERN_DECIMAL /*needs pattern*/, pat, -1, NULL, NULL, &errorCode);
978 dbl = unum_parseDouble( unum, input, -1 /*u_strlen(input)*/, 0 /* 0 = start */, &errorCode );
979 if (U_FAILURE(errorCode)) {
980 log_data_err("Result - %s\n", u_errorName(errorCode));