Lines Matching refs:theCurrency
5179 void DecimalFormat::setCurrencyInternally(const UChar* theCurrency,
5190 UBool isCurr = (theCurrency && *theCurrency);
5195 rounding = ucurr_getRoundingIncrementForUsage(theCurrency, fCurrencyUsage, &ec);
5196 frac = ucurr_getDefaultFractionDigitsForUsage(theCurrency, fCurrencyUsage, &ec);
5199 NumberFormat::setCurrency(theCurrency, ec);
5216 void DecimalFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) {
5218 NumberFormat::setCurrency(theCurrency, ec);
5226 setCurrencyInternally(theCurrency, ec);
5235 const UChar* theCurrency = getCurrency();
5238 if(theCurrency){
5239 double rounding = ucurr_getRoundingIncrementForUsage(theCurrency, fCurrencyUsage, ec);
5240 int32_t frac = ucurr_getDefaultFractionDigitsForUsage(theCurrency, fCurrencyUsage, ec);
5255 void DecimalFormat::setCurrency(const UChar* theCurrency) {
5257 setCurrency(theCurrency, ec);