Lines Matching refs:fTextLength
43 int32_t fTextLength; // Length provided by user with setText(), which member
58 fTextLength = 0; in RegularExpression()
389 regexp->fTextLength = textLength; in uregex_setText()
422 regexp->fTextLength = -1; in uregex_setUText()
449 regexp->fTextLength = (int32_t)inputNativeLength; in uregex_getText()
453 …regexp->fTextLength = utext_extract(inputText, 0, inputNativeLength, NULL, 0, &lengthStatus); // b… in uregex_getText()
454 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(regexp->fTextLength+1)); in uregex_getText()
456 … utext_extract(inputText, 0, inputNativeLength, inputChars, regexp->fTextLength+1, status); in uregex_getText()
463 *textLength = regexp->fTextLength; in uregex_getText()
1660 if (srcIdx == regexp->fTextLength) { in appendTail()
1664 if (c == 0 && regexp->fTextLength == -1) { in appendTail()
1665 regexp->fTextLength = srcIdx; in appendTail()
1675 if (regexp->fTextLength > 0) { in appendTail()
1676 destIdx += (regexp->fTextLength - srcIdx); in appendTail()