Home | History | Annotate | Download | only in intltest

Lines Matching full:error

50             dataerrln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status));
52 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status));
142 logln(UnicodeString("Numeric error ") + min_numeric_error + " to " + max_numeric_error);
181 // 5) Calculate the proportional error --> INF, so the test will fail
209 // This is a normal machine that can support IEEE754 denormalized doubles without throwing an error.
262 errln("*** STRING ERROR \"" + escape(s) + "\" != \"" + escape(s2) + "\"");
269 errln("*** NUMERIC ERROR");
274 // Compute proportional error
275 double error = proportionalError(value, n);
277 if(error > MAX_ERROR) {
278 errln(UnicodeString("*** NUMERIC ERROR ") + error);
282 if (error > max_numeric_error)
283 max_numeric_error = error;
284 if (error < min_numeric_error)
285 min_numeric_error = error;
311 double error = aa - bb;
313 error /= aa;
315 return uprv_fabs(error);