Home | History | Annotate | Download | only in i18n

Lines Matching defs:currency

43     CURRENCYFMTW currency;
138 Win32NumberFormat::Win32NumberFormat(const Locale &locale, UBool currency, UErrorCode &status)
139 : NumberFormat(), fCurrency(currency), fFractionDigitsSet(FALSE), fFormatInfo(NULL)
156 getCurrencyFormat(&fFormatInfo->currency, fLCID);
176 freeCurrencyFormat(&fFormatInfo->currency);
195 freeCurrencyFormat(&fFormatInfo->currency);
196 getCurrencyFormat(&fFormatInfo->currency, fLCID);
302 formatInfo.currency.NumDigits = (UINT) numDigits;
306 formatInfo.currency.Grouping = 0;
309 result = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE);
315 int newLength = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, NULL, 0);
319 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength);