Lines Matching defs:parseResult
3338 Formattable parseResult;
3339 numFmt->parse(oneCurrencyFormatResult, parseResult, status);
3341 (parseResult.getType() == Formattable::kDouble &&
3342 parseResult.getDouble() != numberToBeFormat) ||
3343 (parseResult.getType() == Formattable::kLong &&
3344 parseResult.getLong() != numberToBeFormat)) {
3347 if (parseResult.getType() == Formattable::kDouble) {
3348 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getDouble());
3350 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong());
3439 Formattable parseResult;
3440 numFmt->parse(oneCurrencyFormatResult, parseResult, status);
3442 (parseResult.getType() == Formattable::kDouble &&
3443 parseResult.getDouble() != numberToBeFormat) ||
3444 (parseResult.getType() == Formattable::kLong &&
3445 parseResult.getLong() != numberToBeFormat)) {
3449 if (parseResult.getType() == Formattable::kDouble) {
3450 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getDouble());
3452 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong());