Home | History | Annotate | Download | only in intltest

Lines Matching refs:parseResult

3899             Formattable parseResult;
3900 numFmt->parse(oneCurrencyFormatResult, parseResult, status);
3902 (parseResult.getType() == Formattable::kDouble &&
3903 parseResult.getDouble() != numberToBeFormat) ||
3904 (parseResult.getType() == Formattable::kLong &&
3905 parseResult.getLong() != numberToBeFormat)) {
3908 if (parseResult.getType() == Formattable::kDouble) {
3909 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getDouble());
3911 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong());
4013 Formattable parseResult;
4015 numFmt->parse(oneCurrencyFormatResult, parseResult, status);
4017 (parseResult.getType() == Formattable::kDouble &&
4018 parseResult.getDouble() != numberToBeFormat) ||
4019 (parseResult.getType() == Formattable::kLong &&
4020 parseResult.getLong() != numberToBeFormat)) {
4023 if (parseResult.getType() == Formattable::kDouble) {
4024 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual (double): " +parseResult.getDouble());
4026 errln((UnicodeString)"expected: " + numberToBeFormat + "; actual (long): " +parseResult.getLong());