Searched refs:copyLength (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/third_party/icu/source/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 | 2689 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local 2690 if(copyLength>0) { in ures_getFunctionalEquivalent() 2691 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
|
/external/icu/icu4c/source/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 | 2689 int32_t copyLength = uprv_min(length, resultCapacity); in ures_getFunctionalEquivalent() local 2690 if(copyLength>0) { in ures_getFunctionalEquivalent() 2691 uprv_strncpy(result, found, copyLength); in ures_getFunctionalEquivalent()
|