Home | History | Annotate | Download | only in i18n

Lines Matching refs:buffer

101     // buffer
118 // checking normalization buffer
123 // both are in the normalization buffer
128 // not in the same position in the normalization buffer
216 UChar *buffer = NULL;
219 buffer = (UChar *)uprv_malloc(U_SIZEOF_UCHAR);
221 if (buffer == NULL) {
225 *buffer = 0;
228 buffer = (UChar *)uprv_malloc(U_SIZEOF_UCHAR * length);
230 if (buffer == NULL) {
235 Using this constructor will prevent buffer from being removed when
240 u_memcpy(buffer, string.getBuffer(), length);
249 uprv_init_collIterate(m_data_->iteratordata_.coll, buffer, length,
295 Using this constructor will prevent buffer from being removed when
311 /* Test for buffer overflows */
351 UChar *buffer;
353 buffer = (UChar *)uprv_malloc(U_SIZEOF_UCHAR * length);
355 if (buffer == NULL) {
360 Using this constructor will prevent buffer from being removed when
363 UnicodeString string(buffer, length, length);
366 u_memcpy(buffer, temp, length);
369 buffer = (UChar *)uprv_malloc(U_SIZEOF_UCHAR);
371 if (buffer == NULL) {
375 *buffer = 0;
377 m_data_ = ucol_openElements(order->ucollator, buffer, length, &status);
379 /* Test for buffer overflows */
400 // the normalization buffer
423 /* handle writable buffer here */
442 /* CE buffer */