Home | History | Annotate | Download | only in i18n

Lines Matching refs:FormatInfo

40 union FormatInfo
145 fFormatInfo = (FormatInfo*)uprv_malloc(sizeof(FormatInfo));
156 : NumberFormat(other), fFormatInfo((FormatInfo*)uprv_malloc(sizeof(FormatInfo)))
288 FormatInfo formatInfo;
290 formatInfo = *fFormatInfo;
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);
317 formatInfo.number.NumDigits = (UINT) numDigits;
321 formatInfo.number.Grouping = 0;
324 result = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZE);
328 int newLength = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, NULL, 0);
332 GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, newLength);