Lines Matching refs:nf
105 setNumberFormatCurrency_2_4(NumberFormat &nf, const char *currency, UErrorCode &errorCode) { in setNumberFormatCurrency_2_4() argument
118 DecimalFormat *dnf=dynamic_cast<DecimalFormat *>(&nf); in setNumberFormatCurrency_2_4()
171 nf.setMinimumFractionDigits(currencyMap[i].fractionDigits); in setNumberFormatCurrency_2_4()
172 nf.setMaximumFractionDigits(currencyMap[i].fractionDigits); in setNumberFormatCurrency_2_4()
194 setNumberFormatCurrency_2_6(NumberFormat &nf, const char *currency, UErrorCode &errorCode) { in setNumberFormatCurrency_2_6() argument
210 nf.setCurrency(uCurrency); in setNumberFormatCurrency_2_6()
212 nf.setCurrency(uCurrency, errorCode); in setNumberFormatCurrency_2_6()
230 NumberFormat *nf; in showCurrencyFormatting() local
247 nf=NumberFormat::createCurrencyInstance(sampleLocaleIDs[i], errorCode); in showCurrencyFormatting()
259 setNumberFormatCurrency_2_6(*nf, sampleCurrencies[j], errorCode); in showCurrencyFormatting()
261 setNumberFormatCurrency_2_4(*nf, sampleCurrencies[j], errorCode); in showCurrencyFormatting()
271 nf->format(12345678.93, output); in showCurrencyFormatting()