Home | History | Annotate | Download | only in intltest

Lines Matching refs:getErrorIndex

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