Home | History | Annotate | Download | only in intltest

Lines Matching refs:parseResult

3288             Formattable parseResult;
3289 numFmt->parse(oneCurrencyFormatResult, parseResult, status);
3291 (parseResult.getType() == Formattable::kDouble &&
3292 parseResult.getDouble() != numberToBeFormat) ||
3293 (parseResult.getType() == Formattable::kLong &&
3294 parseResult.getLong() != numberToBeFormat)) {
3297 if (parseResult.getType() == Formattable::kDouble) {
3298 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getDouble());
3300 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong());
3389 Formattable parseResult;
3390 numFmt->parse(oneCurrencyFormatResult, parseResult, status);
3392 (parseResult.getType() == Formattable::kDouble &&
3393 parseResult.getDouble() != numberToBeFormat) ||
3394 (parseResult.getType() == Formattable::kLong &&
3395 parseResult.getLong() != numberToBeFormat)) {
3399 if (parseResult.getType() == Formattable::kDouble) {
3400 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getDouble());
3402 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong());
5968 Formattable parseResult;
5970 numFmt->parseCurrency(formatted, parseResult, parsePos);
5972 (parseResult.getType() == Formattable::kDouble &&
5973 parseResult.getDouble() != 1.0)) {
5990 Formattable parseResult;
5992 numFmt->parseCurrency(formatted, parseResult, parsePos);
5994 (parseResult.getType() == Formattable::kDouble &&
5995 parseResult.getDouble() == 1.0)) {