Home | History | Annotate | Download | only in i18n

Lines Matching refs:buffer

255     we don't need to reallocate the buffer. */
294 UChar *buffer = stackBuffer;
298 buffer[0] = 0x0000;
309 result = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE);
317 buffer = NEW_ARRAY(UChar, newLength);
318 buffer[0] = 0x0000;
319 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength);
331 result = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZE);
337 buffer = NEW_ARRAY(UChar, newLength);
338 buffer[0] = 0x0000;
339 GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, newLength);
344 appendTo.append(buffer, (int32_t) wcslen(buffer));
346 if (buffer != stackBuffer) {
347 DELETE_ARRAY(buffer);