Lines Matching full:rounding
181 * <td>'1' through '9' indicate rounding.
342 * indicate a rounding increment.
387 * fraction digits</em>, then rounding is performed to the
390 rounding increment and/or a rounding mode.
606 * <p><strong>Rounding</strong>
608 * <p>DecimalFormat supports rounding to a specific increment. For
610 * nearest 0.65 is 1.3. The rounding increment may be specified through the API
611 * or in a pattern. To specify a rounding increment in a pattern, include the
612 * increment in the pattern itself. "#,#50" specifies a rounding increment of
613 * 50. "#,##0.05" specifies a rounding increment of 0.05.
615 * <p>In the absense of an explicit rounding increment numbers are
619 * <li>Rounding only affects the string produced by formatting. It does
622 * <li>A <em>rounding mode</em> determines how values are rounded; see
623 * DecimalFormat::ERoundingMode. The default rounding mode is
624 * DecimalFormat::kRoundHalfEven. The rounding mode can only be set
627 * <li>Some locales use rounding in their currency formats to reflect the
630 * <li>In a pattern, digits '1' through '9' specify rounding, but otherwise
648 * Rounding mode.
1284 * Get the rounding increment.
1285 * @return A positive rounding increment, or 0.0 if a rounding
1295 * Set the rounding increment. In the absence of a rounding increment,
1297 * @param newValue A positive rounding increment.
1307 * Get the rounding mode.
1308 * @return A rounding mode
1317 * Set the rounding mode.
1318 * @param roundingMode A rounding mode
2145 DigitList* fRoundingIncrement; // NULL if no rounding increment specified.