Home | History | Annotate | Download | only in i18n

Lines Matching refs:currency

43     CURRENCYFMTW currency;
139 Win32NumberFormat::Win32NumberFormat(const Locale &locale, UBool currency, UErrorCode &status)
140 : NumberFormat(), fCurrency(currency), fFractionDigitsSet(FALSE), fFormatInfo(NULL)
148 getCurrencyFormat(&fFormatInfo->currency, fLCID);
168 freeCurrencyFormat(&fFormatInfo->currency);
186 freeCurrencyFormat(&fFormatInfo->currency);
187 getCurrencyFormat(&fFormatInfo->currency, fLCID);
295 formatInfo.currency.NumDigits = (UINT) numDigits;
299 formatInfo.currency.Grouping = 0;
302 result = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE);
308 int newLength = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, NULL, 0);
312 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength);