Searched refs:copyLength (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/icu/source/i18n/ |
D | uregex.cpp | 647 int32_t copyLength = fullLength; in uregex_group() local 648 if (copyLength < destCapacity) { in uregex_group() 649 dest[copyLength] = 0; in uregex_group() 650 } else if (copyLength == destCapacity) { in uregex_group() 653 copyLength = destCapacity; in uregex_group() 660 if (copyLength > 0) { in uregex_group() 661 u_memcpy(dest, ®exp->fText[startIx], copyLength); in uregex_group()
|
/external/icu4c/i18n/ |
D | uregex.cpp | 665 int32_t copyLength = fullLength; in uregex_group() local 666 if (copyLength < destCapacity) { in uregex_group() 667 dest[copyLength] = 0; in uregex_group() 668 } else if (copyLength == destCapacity) { in uregex_group() 671 copyLength = destCapacity; in uregex_group() 678 if (copyLength > 0) { in uregex_group() 679 u_memcpy(dest, ®exp->fText[startIx], copyLength); in uregex_group()
|
/external/icu4c/common/ |
D | ustrcase.cpp | 421 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity; in ustrcase_map() local 422 if(copyLength>0) { in ustrcase_map() 423 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR); in ustrcase_map()
|
D | locdispnames.cpp | 332 int32_t copyLength=uprv_min(length, destCapacity); in _getStringOrCopyKey() local 333 if(copyLength>0 && s != NULL) { in _getStringOrCopyKey() 334 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
|
D | uresbund.cpp | 2692 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local 2693 if(copyLength>0) { in ures_getFunctionalEquivalent() 2694 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
|
/external/chromium_org/third_party/icu/source/common/ |
D | locdispnames.cpp | 331 int32_t copyLength=uprv_min(length, destCapacity); in _getStringOrCopyKey() local 332 if(copyLength>0 && s != NULL) { in _getStringOrCopyKey() 333 u_memcpy(dest, s, copyLength); in _getStringOrCopyKey()
|
D | ustrcase.c | 539 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity; in caseMap() local 540 if(copyLength>0) { in caseMap() 541 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR); in caseMap()
|
D | uresbund.c | 2641 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local 2642 if(copyLength>0) { in ures_getFunctionalEquivalent() 2643 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
|