Lines Matching refs:parsePos
365 int32_t *parsePos /* 0 = start */, in parseRes() argument
374 if(parsePos != 0) in parseRes()
375 pp.setIndex(*parsePos); in parseRes()
381 if(parsePos != 0) { in parseRes()
382 *parsePos = pp.getErrorIndex(); in parseRes()
384 } else if(parsePos != 0) { in parseRes()
385 *parsePos = pp.getIndex(); in parseRes()
393 int32_t *parsePos /* 0 = start */, in unum_parse() argument
397 parseRes(res, fmt, text, textLength, parsePos, status); in unum_parse()
405 int32_t *parsePos /* 0 = start */, in unum_parseInt64() argument
409 parseRes(res, fmt, text, textLength, parsePos, status); in unum_parseInt64()
417 int32_t *parsePos /* 0 = start */, in unum_parseDouble() argument
421 parseRes(res, fmt, text, textLength, parsePos, status); in unum_parseDouble()
429 int32_t *parsePos /* 0 = start */, in unum_parseDecimal() argument
442 parseRes(res, fmt, text, textLength, parsePos, status); in unum_parseDecimal()
462 int32_t* parsePos, /* 0 = start */ in unum_parseDoubleCurrency() argument
472 if (parsePos != NULL) { in unum_parseDoubleCurrency()
473 pp.setIndex(*parsePos); in unum_parseDoubleCurrency()
478 if (parsePos != NULL) { in unum_parseDoubleCurrency()
479 *parsePos = pp.getErrorIndex(); in unum_parseDoubleCurrency()
482 if (parsePos != NULL) { in unum_parseDoubleCurrency()
483 *parsePos = pp.getIndex(); in unum_parseDoubleCurrency()
901 int32_t* parsePos, /* 0 = start */ in unum_parseToUFormattable() argument
912 parseRes(*(Formattable::fromUFormattable(result)), fmt, text, textLength, parsePos, status); in unum_parseToUFormattable()