Lines Matching refs:nf
103 setNumberFormatCurrency_2_4(NumberFormat &nf, const char *currency, UErrorCode &errorCode) { in setNumberFormatCurrency_2_4() argument
116 DecimalFormat *dnf=dynamic_cast<DecimalFormat *>(&nf); in setNumberFormatCurrency_2_4()
169 nf.setMinimumFractionDigits(currencyMap[i].fractionDigits); in setNumberFormatCurrency_2_4()
170 nf.setMaximumFractionDigits(currencyMap[i].fractionDigits); in setNumberFormatCurrency_2_4()
192 setNumberFormatCurrency_2_6(NumberFormat &nf, const char *currency, UErrorCode &errorCode) { in setNumberFormatCurrency_2_6() argument
208 nf.setCurrency(uCurrency); in setNumberFormatCurrency_2_6()
210 nf.setCurrency(uCurrency, errorCode); in setNumberFormatCurrency_2_6()
228 NumberFormat *nf; in showCurrencyFormatting() local
245 nf=NumberFormat::createCurrencyInstance(sampleLocaleIDs[i], errorCode); in showCurrencyFormatting()
257 setNumberFormatCurrency_2_6(*nf, sampleCurrencies[j], errorCode); in showCurrencyFormatting()
259 setNumberFormatCurrency_2_4(*nf, sampleCurrencies[j], errorCode); in showCurrencyFormatting()
269 nf->format(12345678.93, output); in showCurrencyFormatting()