Home | History | Annotate | Download | only in i18n

Lines Matching defs:fTextLength

45     int32_t           fTextLength;   // Length provided by user with setText(), which
60 fTextLength = 0;
391 regexp->fTextLength = textLength;
424 regexp->fTextLength = -1;
451 regexp->fTextLength = (int32_t)inputNativeLength;
455 regexp->fTextLength = utext_extract(inputText, 0, inputNativeLength, NULL, 0, &lengthStatus); // buffer overflow error
456 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(regexp->fTextLength+1));
458 utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status);
465 *textLength = regexp->fTextLength;
1662 if (srcIdx == regexp->fTextLength) {
1666 if (c == 0 && regexp->fTextLength == -1) {
1667 regexp->fTextLength = srcIdx;
1677 if (regexp->fTextLength > 0) {
1678 destIdx += (regexp->fTextLength - srcIdx);