Home | History | Annotate | Download | only in common

Lines Matching refs:copyStr

1550         char *copyStr = (char *)uprv_malloc(len+1);
1551 if (copyStr == NULL) {
1554 uprv_memcpy(copyStr, src->context, len+1);
1555 dest->context = copyStr;
2329 UChar *copyStr = (UChar *)uprv_malloc((len+1) * sizeof(UChar));
2330 if (copyStr == NULL) {
2335 copyStr[i] = srcStr[i];
2337 copyStr[len] = 0;
2338 dest->context = copyStr;