Searched refs:copyLength (Results 1 - 4 of 4) sorted by relevance

/external/icu4c/common/
H A Dlocdispnames.cpp331 int32_t copyLength=uprv_min(length, destCapacity); local
332 if(copyLength>0 && s != NULL) {
333 u_memcpy(dest, s, copyLength);
H A Dustrcase.c539 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity; local
540 if(copyLength>0) {
541 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR);
H A Duresbund.c2641 int32_t copyLength = uprv_min(length, resultCapacity); local
2642 if(copyLength>0) {
2643 uprv_strncpy(result, found, copyLength);
/external/icu4c/i18n/
H A Duregex.cpp665 int32_t copyLength = fullLength; local
666 if (copyLength < destCapacity) {
667 dest[copyLength] = 0;
668 } else if (copyLength == destCapacity) {
671 copyLength = destCapacity;
678 if (copyLength > 0) {
679 u_memcpy(dest, &regexp->fText[startIx], copyLength);

Completed in 84 milliseconds