Lines Matching refs:getErrorIndex
282 if (pos.getErrorIndex() != -1) { in Test4052223()
294 logln(UnicodeString("unparsable string , should fail at ") + pos.getErrorIndex()); in Test4052223()
295 if (pos.getErrorIndex() == -1) in Test4052223()
298 if (pos.getErrorIndex() != 4) in Test4052223()
299 errln(UnicodeString("setErrorIndex failed, got ") + pos.getErrorIndex() + " instead of 4"); in Test4052223()
308 if (pos.getErrorIndex() != -1 && obj.getDouble() == -1.0) in Test4052223()
309 errln(UnicodeString("Parse with \"are negative\" failed, at ") + pos.getErrorIndex()); in Test4052223()
313 if (pos.getErrorIndex() != -1 && obj.getDouble() == 0.0) in Test4052223()
314 errln(UnicodeString("Parse with \"are no or fraction\" failed, at ") + pos.getErrorIndex()); in Test4052223()
318 if (pos.getErrorIndex() == -1 && ! uprv_isNaN(obj.getDouble())) in Test4052223()
319 errln(UnicodeString("Parse with \"go postal\" failed, at ") + pos.getErrorIndex()); in Test4052223()
845 if (pp.getErrorIndex() == -1) in Test4120552()
846 errln(UnicodeString("Incorrect error index: ") + pp.getErrorIndex()); in Test4120552()