Home | History | Annotate | Download | only in numfmt

Lines Matching refs:nf

92  * @param nf The NumberFormat on which to set the currency; takes effect on
95 * The display style of the output is controlled by nf (its pattern,
103 setNumberFormatCurrency_2_4(NumberFormat &nf, const char *currency, UErrorCode &errorCode) {
116 DecimalFormat *dnf=dynamic_cast<DecimalFormat *>(&nf);
169 nf.setMinimumFractionDigits(currencyMap[i].fractionDigits);
170 nf.setMaximumFractionDigits(currencyMap[i].fractionDigits);
182 * @param nf The NumberFormat on which to set the currency; takes effect on
184 * The display style of the output is controlled by nf (its pattern,
192 setNumberFormatCurrency_2_6(NumberFormat &nf, const char *currency, UErrorCode &errorCode) {
208 nf.setCurrency(uCurrency);
210 nf.setCurrency(uCurrency, errorCode);
228 NumberFormat *nf;
245 nf=NumberFormat::createCurrencyInstance(sampleLocaleIDs[i], errorCode);
257 setNumberFormatCurrency_2_6(*nf, sampleCurrencies[j], errorCode);
259 setNumberFormatCurrency_2_4(*nf, sampleCurrencies[j], errorCode);
269 nf->format(12345678.93, output);