Lines Matching refs:quantity
30 quantity.bogus = true; in clear()
43 if (!quantity.bogus && 0 != (flags & FLAG_NEGATIVE)) { in postProcess()
44 quantity.negate(); in postProcess()
53 return !quantity.bogus || 0 != (flags & FLAG_NAN) || 0 != (flags & FLAG_INFINITY); in seenNumber()
73 if (quantity.bogus) { in getDouble()
77 if (quantity.isZeroish() && quantity.isNegative()) { in getDouble()
81 if (quantity.fitsInLong()) { in getDouble()
82 return static_cast<double>(quantity.toLong()); in getDouble()
84 return quantity.toDouble(); in getDouble()
109 U_ASSERT(!quantity.bogus); in populateFormattable()
110 if (quantity.isZeroish() && quantity.isNegative() && !integerOnly) { in populateFormattable()
116 output.adoptDecimalQuantity(new DecimalQuantity(quantity)); in populateFormattable()