Lines Matching refs:getErrorIndex
285 if (pos.getErrorIndex() != -1) { in Test4052223()
297 logln(UnicodeString("unparsable string , should fail at ") + pos.getErrorIndex()); in Test4052223()
298 if (pos.getErrorIndex() == -1) in Test4052223()
301 if (pos.getErrorIndex() != 4) in Test4052223()
302 errln(UnicodeString("setErrorIndex failed, got ") + pos.getErrorIndex() + " instead of 4"); in Test4052223()
311 if (pos.getErrorIndex() != -1 && obj.getDouble() == -1.0) in Test4052223()
312 errln(UnicodeString("Parse with \"are negative\" failed, at ") + pos.getErrorIndex()); in Test4052223()
316 if (pos.getErrorIndex() != -1 && obj.getDouble() == 0.0) in Test4052223()
317 errln(UnicodeString("Parse with \"are no or fraction\" failed, at ") + pos.getErrorIndex()); in Test4052223()
321 if (pos.getErrorIndex() == -1 && ! uprv_isNaN(obj.getDouble())) in Test4052223()
322 errln(UnicodeString("Parse with \"go postal\" failed, at ") + pos.getErrorIndex()); in Test4052223()
848 if (pp.getErrorIndex() == -1) in Test4120552()
849 errln(UnicodeString("Incorrect error index: ") + pp.getErrorIndex()); in Test4120552()