• Home
  • Raw
  • Download

Lines Matching refs:FixedDecimal

467     FixedDecimal values[1000];  in testGetFixedDecimalSamples()
534 checkNewSamples(description, test, u"one", u"@integer 0, 1, 1e5", FixedDecimal(0)); in testSamplesWithExponent()
535 …ption, test, u"many", u"@integer 1000000, 2e6, 3e6, 4e6, 5e6, 6e6, 7e6, …", FixedDecimal(1000000)); in testSamplesWithExponent()
536 …er", u"@integer 2~17, 100, 1000, 10000, 100000, 2e5, 3e5, 4e5, 5e5, 6e5, 7e5, …", FixedDecimal(2)); in testSamplesWithExponent()
551 checkNewSamples(description2, test2, u"one", u"@decimal 0.0~1.5, 1.1e5", FixedDecimal(0, 1)); in testSamplesWithExponent()
552 …t2, u"many", u"@decimal 2.1e6, 3.1e6, 4.1e6, 5.1e6, 6.1e6, 7.1e6, …", FixedDecimal::createWithExpo… in testSamplesWithExponent()
553 … 10000.0, 100000.0, 1000000.0, 2.1e5, 3.1e5, 4.1e5, 5.1e5, 6.1e5, 7.1e5, …", FixedDecimal(2.0, 1)); in testSamplesWithExponent()
572 checkNewSamples(description, test, u"one", u"@integer 0, 1, 1c5", FixedDecimal(0)); in testSamplesWithCompactNotation()
573 …ption, test, u"many", u"@integer 1000000, 2c6, 3c6, 4c6, 5c6, 6c6, 7c6, …", FixedDecimal(1000000)); in testSamplesWithCompactNotation()
574 …er", u"@integer 2~17, 100, 1000, 10000, 100000, 2c5, 3c5, 4c5, 5c5, 6c5, 7c5, …", FixedDecimal(2)); in testSamplesWithCompactNotation()
589 checkNewSamples(description2, test2, u"one", u"@decimal 0.0~1.5, 1.1c5", FixedDecimal(0, 1)); in testSamplesWithCompactNotation()
590 …t2, u"many", u"@decimal 2.1c6, 3.1c6, 4.1c6, 5.1c6, 6.1c6, 7.1c6, …", FixedDecimal::createWithExpo… in testSamplesWithCompactNotation()
591 … 10000.0, 100000.0, 1000000.0, 2.1c5, 3.1c5, 4.1c5, 5.1c5, 6.1c5, 7.1c5, …", FixedDecimal(2.0, 1)); in testSamplesWithCompactNotation()
599 FixedDecimal firstInRange) { in checkNewSamples()
602 FixedDecimal samples[1000]; in checkNewSamples()
609 FixedDecimal actualFirstSample = samples[0]; in checkNewSamples()
970 FixedDecimal ni(numDbl, fractionDigitCount, fractionDigits); in checkSelect()
1357 int32_t numFractionDigits = FixedDecimal::decimals(tc.n); in testFixedDecimal()
1363 int64_t actualFractionDigits = FixedDecimal::getFractionalDigits(tc.n, numFractionDigits); in testFixedDecimal()