Home
last modified time | relevance | path

Searched refs:theCurrency (Results 1 – 4 of 4) sorted by relevance

/external/icu4c/i18n/unicode/
Ddecimfmt.h1812 virtual void setCurrency(const UChar* theCurrency, UErrorCode& ec);
1819 virtual void setCurrency(const UChar* theCurrency);
2063 virtual void setCurrencyInternally(const UChar* theCurrency, UErrorCode& ec);
Dnumfmt.h855 virtual void setCurrency(const UChar* theCurrency, UErrorCode& ec);
/external/icu4c/i18n/
Dnumfmt.cpp1051 void NumberFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) { in setCurrency() argument
1055 if (theCurrency) { in setCurrency()
1056 u_strncpy(fCurrency, theCurrency, 3); in setCurrency()
Ddecimfmt.cpp4632 void DecimalFormat::setCurrencyInternally(const UChar* theCurrency, in setCurrencyInternally() argument
4643 UBool isCurr = (theCurrency && *theCurrency); in setCurrencyInternally()
4648 rounding = ucurr_getRoundingIncrement(theCurrency, &ec); in setCurrencyInternally()
4649 frac = ucurr_getDefaultFractionDigits(theCurrency, &ec); in setCurrencyInternally()
4652 NumberFormat::setCurrency(theCurrency, ec); in setCurrencyInternally()
4666 void DecimalFormat::setCurrency(const UChar* theCurrency, UErrorCode& ec) { in setCurrency() argument
4668 NumberFormat::setCurrency(theCurrency, ec); in setCurrency()
4676 setCurrencyInternally(theCurrency, ec); in setCurrency()
4680 void DecimalFormat::setCurrency(const UChar* theCurrency) { in setCurrency() argument
4682 setCurrency(theCurrency, ec); in setCurrency()