• Home
  • Raw
  • Download

Lines Matching refs:getLong

376                 a = af.getLong();  in TestExponential()
424 int32_t a = af.getLong(status); in TestExponential()
437 + ", Long: " + af.getLong()); in TestExponential()
840 logln((UnicodeString)"parse(" + arg + ") = " + n.getLong()); in TestParse()
842 n.getLong() != 0) errln((UnicodeString)"FAIL: Expected 0"); in TestParse()
936 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
939 n.getLong() != 1) { in TestLenientParse()
960 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
962 if (U_FAILURE(status) || n.getType() != Formattable::kLong || n.getLong() != -5) { in TestLenientParse()
980 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
982 if (U_FAILURE(status) || n.getType() != Formattable::kLong || n.getLong() != -5) { in TestLenientParse()
1000 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1003 n.getLong() != 1000) { in TestLenientParse()
1013 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1016 n.getLong() != -1000) { in TestLenientParse()
1072 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1087 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse()
1090 n.getLong() != 1000) { in TestLenientParse()
2346 return a.getLong() == b.getLong(); in equalValue()
2348 … return (double) a.getLong() == b.getDouble(); // TODO check use of double instead of long in equalValue()
2352 return a.getDouble() == (double) b.getLong(); in equalValue()
2358 return a.getInt64() == (int64_t)b.getLong(); in equalValue()
2940 result.getLong() != 124) { in TestSpaceParsing()
2941 …errln("FAILED parse " + stringToBeParsed + "; wrong number, expect: 124, got " + result.getLong()); in TestSpaceParsing()
3112 parseRes.getLong() != numberToBeFormat)) { in TestMultiCurrencySign()
3204 result.getLong() != parsedResult)) { in TestDecimalFormatCurrencyParse()
3294 parseResult.getLong() != numberToBeFormat)) { in TestCurrencyIsoPluralFormat()
3300 … errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong()); in TestCurrencyIsoPluralFormat()
3395 parseResult.getLong() != numberToBeFormat)) { in TestCurrencyParsing()
3402 … errln((UnicodeString)"expected: " + numberToBeFormat + "; actual: " +parseResult.getLong()); in TestCurrencyParsing()
6242 n = f.getLong(); in TestDecimal()
6249 ASSERT_EQUALS(-123, f.getLong()); in TestDecimal()
6250 ASSERT_EQUALS(-123, f.getLong(status)); in TestDecimal()