Home | History | Annotate | Download | only in unicode

Lines Matching full:rounding

180  *     <td>'1' through '9' indicate rounding.
341 * indicate a rounding increment.
385 * fraction digits</em>, then rounding is performed to the
388 * by specifying a rounding increment and/or a rounding mode.
604 * <p><strong>Rounding</strong>
606 * <p>DecimalFormat supports rounding to a specific increment. For
608 * nearest 0.65 is 1.3. The rounding increment may be specified through the API
609 * or in a pattern. To specify a rounding increment in a pattern, include the
610 * increment in the pattern itself. "#,#50" specifies a rounding increment of
611 * 50. "#,##0.05" specifies a rounding increment of 0.05.
613 * <p>In the absense of an explicit rounding increment numbers are
617 * <li>Rounding only affects the string produced by formatting. It does
620 * <li>A <em>rounding mode</em> determines how values are rounded; see
621 * DecimalFormat::ERoundingMode. The default rounding mode is
622 * DecimalFormat::kRoundHalfEven. The rounding mode can only be set
625 * <li>Some locales use rounding in their currency formats to reflect the
628 * <li>In a pattern, digits '1' through '9' specify rounding, but otherwise
646 * Rounding mode.
1278 * Get the rounding increment.
1279 * @return A positive rounding increment, or 0.0 if a rounding
1289 * Set the rounding increment. In the absence of a rounding increment,
1291 * @param newValue A positive rounding increment.
1301 * Get the rounding mode.
1302 * @return A rounding mode
1311 * Set the rounding mode.
1312 * @param roundingMode A rounding mode
2125 DigitList* fRoundingIncrement; // NULL if no rounding increment specified.