Lines Matching refs:ppos
385 ParsePosition ppos; in isParsePass() local
386 fmtPtr->parse(tuple.parse, result, ppos); in isParsePass()
387 if (ppos.getIndex() == 0) { in isParsePass()
429 ParsePosition ppos; in isParseCurrencyPass() local
431 fmtPtr->parseCurrency(tuple.parse, ppos)); in isParseCurrencyPass()
432 if (ppos.getIndex() == 0) { in isParseCurrencyPass()
620 ParsePosition ppos; in TestAPI() local
621 LocalPointer<CurrencyAmount> currAmt(test->parseCurrency("",ppos)); in TestAPI()
623 if (ppos.getIndex()) { in TestAPI()
3145 ParsePosition ppos; in expectParseCurrency() local
3147 LocalPointer<CurrencyAmount> currencyAmount(fmt.parseCurrency(utext, ppos)); in expectParseCurrency()
3148 if (!ppos.getIndex()) { in expectParseCurrency()
7628 ParsePosition ppos; in TestParseNegativeWithFaLocale() local
7631 test->parse(value, af, ppos); in TestParseNegativeWithFaLocale()
7632 if (ppos.getIndex() == 0) { in TestParseNegativeWithFaLocale()
7644 ParsePosition ppos; in TestParseNegativeWithAlternateMinusSign() local
7647 test->parse(value, af, ppos); in TestParseNegativeWithAlternateMinusSign()
7648 if (ppos.getIndex() == 0) { in TestParseNegativeWithAlternateMinusSign()
7769 ParsePosition ppos; in TestParseSignsAndMarks() local
7770 numfmt->parse(itemPtr->numString, fmtobj, ppos); in TestParseSignsAndMarks()
7771 if (ppos.getIndex() == itemPtr->numString.length()) { in TestParseSignsAndMarks()
7777 … itemPtr->lenient + ", parse of \"" + itemPtr->numString + "\" gives position " + ppos.getIndex()); in TestParseSignsAndMarks()