Home | History | Annotate | Download | only in i18n

Lines Matching refs:copyLength

695         int32_t copyLength = fullLength;
696 if (copyLength < destCapacity) {
697 dest[copyLength] = 0;
698 } else if (copyLength == destCapacity) {
701 copyLength = destCapacity;
708 if (copyLength > 0) {
709 u_memcpy(dest, &regexp->fText[startIx], copyLength);