Lines Matching refs:getLong
590 a = af.getLong(); in TestExponential()
639 int32_t a = af.getLong(status); in TestExponential()
652 + ", Long: " + af.getLong()); in TestExponential()
1060 logln((UnicodeString)"parse(" + arg + ") = " + n.getLong()); in TestParse()
1062 n.getLong() != 0) errln((UnicodeString)"FAIL: Expected 0"); in TestParse()
1155 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1158 n.getLong() != 1) { in TestLenientParse()
1180 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1182 if (U_FAILURE(status) || n.getType() != Formattable::kLong || n.getLong() != -5) { in TestLenientParse()
1201 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1203 if (U_FAILURE(status) || n.getType() != Formattable::kLong || n.getLong() != -5) { in TestLenientParse()
1222 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1225 n.getLong() != 1000) { in TestLenientParse()
1236 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1239 n.getLong() != -1000) { in TestLenientParse()
1300 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1316 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1319 n.getLong() != 1000) { in TestLenientParse()
2823 return a.getLong() == b.getLong(); in equalValue()
2825 … return (double) a.getLong() == b.getDouble(); // TODO check use of double instead of long in equalValue()
2829 return a.getDouble() == (double) b.getLong(); in equalValue()
2835 return a.getInt64() == (int64_t)b.getLong(); in equalValue()
3520 result.getLong() != 124) { in TestSpaceParsing()
3521 …errln("FAILED parse " + stringToBeParsed + "; wrong number, expect: 124, got " + result.getLong()); in TestSpaceParsing()
3694 parseRes.getLong() != numberToBeFormat)) { in TestMultiCurrencySign()
3823 result.getLong() != parsedResult)) { in TestDecimalFormatCurrencyParse()
3915 parseResult.getLong() != numberToBeFormat)) { in TestCurrencyIsoPluralFormat()
3921 … errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong()); in TestCurrencyIsoPluralFormat()
4031 parseResult.getLong() != numberToBeFormat)) { in TestCurrencyParsing()
4037 …errln((UnicodeString)"expected: " + numberToBeFormat + "; actual (long): " +parseResult.getLong()); in TestCurrencyParsing()
6868 n = f.getLong(); in TestDecimal()
6875 ASSERT_EQUALS(-123, f.getLong()); in TestDecimal()
6876 ASSERT_EQUALS(-123, f.getLong(status)); in TestDecimal()
7332 exactMatch = (f.getLong()==ufmt_getLong(u, &valueStatus)); in testFormattableAsUFormattable()