Searched refs:copyLength (Results 1 – 4 of 4) sorted by relevance
/external/icu4c/i18n/ |
D | uregex.cpp | 429 int32_t copyLength = fullLength; in uregex_group() local 430 if (copyLength < destCapacity) { in uregex_group() 431 dest[copyLength] = 0; in uregex_group() 432 } else if (copyLength == destCapacity) { in uregex_group() 435 copyLength = destCapacity; in uregex_group() 442 if (copyLength > 0) { in uregex_group() 443 u_memcpy(dest, ®exp->fText[startIx], copyLength); in uregex_group()
|
/external/icu4c/common/ |
D | ustrcase.c | 533 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity; in caseMap() local 534 if(copyLength>0) { in caseMap() 535 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR); in caseMap()
|
D | uloc.c | 2202 int32_t copyLength=uprv_min(length, destCapacity); in _getStringOrCopyKey() local 2203 if(copyLength>0 && s != NULL) { in _getStringOrCopyKey() 2204 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
|
D | uresbund.c | 2452 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local 2453 if(copyLength>0) { in ures_getFunctionalEquivalent() 2454 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
|