Home | History | Annotate | Download | only in intltest

Lines Matching refs:itemPtr

7762     const SignsAndMarksItem * itemPtr;
7763 for (itemPtr = items; itemPtr->locale != NULL; itemPtr++ ) {
7765 NumberFormat *numfmt = NumberFormat::createInstance(Locale(itemPtr->locale), status);
7767 numfmt->setLenient(itemPtr->lenient);
7770 numfmt->parse(itemPtr->numString, fmtobj, ppos);
7771 if (ppos.getIndex() == itemPtr->numString.length()) {
7773 if (U_FAILURE(status) || parsedValue != itemPtr->value) {
7774 errln((UnicodeString)"FAIL: locale " + itemPtr->locale + ", lenient " + itemPtr->lenient + ", parse of \"" + itemPtr->numString + "\" gives value " + parsedValue);
7777 errln((UnicodeString)"FAIL: locale " + itemPtr->locale + ", lenient " + itemPtr->lenient + ", parse of \"" + itemPtr->numString + "\" gives position " + ppos.getIndex());
7780 dataerrln("FAIL: NumberFormat::createInstance for locale % gives error %s", itemPtr->locale, u_errorName(status));