Lines Matching refs:buffer
142 we don't need to reallocate the buffer. */
182 wchar_t *buffer = stackBuffer;
184 buffer[0] = 0x0000;
187 result = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, STACK_BUFFER_SIZE);
195 buffer = NEW_ARRAY(UChar, newLength);
196 buffer[0] = 0x0000;
197 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
201 result = GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, STACK_BUFFER_SIZE);
209 buffer = NEW_ARRAY(UChar, newLength);
210 buffer[0] = 0x0000;
211 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
216 appendTo.append(buffer, (int32_t) wcslen(buffer));
218 if (buffer != stackBuffer) {
219 DELETE_ARRAY(buffer);