Home
last modified time | relevance | path

Searched refs:copyStr (Results 1 – 1 of 1) sorted by relevance

/external/icu/icu4c/source/common/
Dutext.cpp1579 char *copyStr = (char *)uprv_malloc(len+1); in utf8TextClone() local
1580 if (copyStr == NULL) { in utf8TextClone()
1583 uprv_memcpy(copyStr, src->context, len+1); in utf8TextClone()
1584 dest->context = copyStr; in utf8TextClone()
2361 UChar *copyStr = (UChar *)uprv_malloc((len+1) * sizeof(UChar)); in ucstrTextClone() local
2362 if (copyStr == NULL) { in ucstrTextClone()
2367 copyStr[i] = srcStr[i]; in ucstrTextClone()
2369 copyStr[len] = 0; in ucstrTextClone()
2370 dest->context = copyStr; in ucstrTextClone()