Searched defs:decfmt (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dmeasfmt.cpp381 DecimalFormat *decfmt = dynamic_cast<DecimalFormat *>(inf); local
382 if (decfmt != NULL) {
383 decfmt->setRoundingMode(DecimalFormat::kRoundDown);
H A Dmsgfmt.cpp1703 DecimalFormat* decfmt = dynamic_cast<DecimalFormat*>(fmt); local
1704 if (decfmt != NULL) {
1705 decfmt->applyPattern(style,parseError,ec);
H A Dsmpdtfmt.cpp245 DecimalFormat* decfmt = dynamic_cast<DecimalFormat*>(&nf); local
246 if (decfmt != NULL) {
247 decfmt->setDecimalSeparatorAlwaysShown(FALSE);
3653 DecimalFormat* decfmt = dynamic_cast<DecimalFormat*>(fNumberFormat); local
3654 if (decfmt != NULL) {
3656 suf = decfmt->getNegativeSuffix(suf);
3659 suf = decfmt->getPositiveSuffix(suf);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java2622 private final DecimalFormat decfmt; field in class:NumberFormatTest.ParseThreadJB5358
2627 public ParseThreadJB5358(DecimalFormat decfmt, String numstr, double expect, ArrayList errors) { argument
2628 this.decfmt = decfmt;
2638 Number n = decfmt.parse(numstr);
3734 DecimalFormat decfmt = new DecimalFormat("\u00A4#,##0.00;\u00A4#,##0.00", decfmtsym);
3735 String currFmtResult = decfmt.format(-100.0);
3737 errln("decfmt.toPattern results wrong, expected \u200B$100.00, got " + currFmtResult);

Completed in 355 milliseconds