Home | History | Annotate | Download | only in i18n

Lines Matching refs:buffer

240     UChar *buffer = stackBuffer;
242 result = GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, STACK_BUFFER_SIZE);
248 buffer = NEW_ARRAY(UChar, newLength);
249 GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, newLength);
253 appendTo.append(buffer, (int32_t) wcslen(buffer));
255 if (buffer != stackBuffer) {
256 DELETE_ARRAY(buffer);
266 UChar *buffer = stackBuffer;
268 result = GetTimeFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, buffer, STACK_BUFFER_SIZE);
274 buffer = NEW_ARRAY(UChar, newLength);
275 GetDateFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, buffer, newLength);
279 appendTo.append(buffer, (int32_t) wcslen(buffer));
281 if (buffer != stackBuffer) {
282 DELETE_ARRAY(buffer);