Home | History | Annotate | Download | only in i18n

Lines Matching full:copylength

664         int32_t copyLength = fullLength;
665 if (copyLength < destCapacity) {
666 dest[copyLength] = 0;
667 } else if (copyLength == destCapacity) {
670 copyLength = destCapacity;
677 if (copyLength > 0) {
678 u_memcpy(dest, &regexp->fText[startIx], copyLength);