Home | History | Annotate | Download | only in i18n

Lines Matching refs:fText

42     const UChar      *fText;         // Text from setText()
57 fText = NULL;
70 if (fOwnsText && fText!=NULL) {
71 uprv_free((void *)fText);
94 if (requiresText && re->fText == NULL && !re->fOwnsText) {
307 // Note: fText is not cloned.
384 if (regexp->fOwnsText && regexp->fText != NULL) {
385 uprv_free((void *)regexp->fText);
388 regexp->fText = text;
417 if (regexp->fOwnsText && regexp->fText != NULL) {
418 uprv_free((void *)regexp->fText);
421 regexp->fText = NULL; // only fill it in on request
443 if (regexp->fText == NULL) {
448 regexp->fText = inputText->chunkContents;
457 regexp->fText = inputChars;
465 return regexp->fText;
648 if (destCapacity == 0 || regexp->fText != NULL) {
679 u_memcpy(dest, &regexp->fText[startIx], copyLength);
727 if (regexp->fText != NULL) {
740 utext_replace(dest, 0, utext_nativeLength(dest), &regexp->fText[startIx], endIx - startIx, status);
743 utext_openUChars(&groupText, &regexp->fText[startIx], endIx - startIx, status);
1390 if (regexp->fText != NULL) {
1404 appendToBuf(regexp->fText[i], &destIdx, dest, capacity);
1618 if (regexp->fText != NULL) {
1636 UChar c = regexp->fText[srcIdx];