Lines Matching refs:fPat
39 RegexPattern *fPat; member
54 fPat = NULL; in RegularExpression()
68 delete fPat; in ~RegularExpression()
157 re->fPat = RegexPattern::compile(&patText, flags, *pe, *status); in uregex_open()
159 re->fPat = RegexPattern::compile(&patText, flags, *status); in uregex_open()
170 re->fMatcher = re->fPat->matcher(*status); in uregex_open()
240 re->fPat = RegexPattern::compile(&patText, flags, *pe, *status); in uregex_openUText()
242 re->fPat = RegexPattern::compile(&patText, flags, *status); in uregex_openUText()
253 re->fMatcher = re->fPat->matcher(*status); in uregex_openUText()
298 clone->fMatcher = source->fPat->matcher(*status); in uregex_clone()
304 clone->fPat = source->fPat; in uregex_clone()
347 return regexp->fPat->patternText(*status); in uregex_patternUText()
362 int32_t flags = regexp->fPat->flags(); in uregex_flags()
644 …int32_t result = regexp->fPat->groupNumberFromName(UnicodeString(groupName, nameLength), *status); in uregex_groupNumberFromName()
657 return regexp->fPat->groupNumberFromName(groupName, nameLength, *status); in uregex_groupNumberFromCName()
1511 groupNum = regexp->fPat->fNamedCaptureMap ? in appendReplacement()
1512 uhash_geti(regexp->fPat->fNamedCaptureMap, &groupName) : 0; in appendReplacement()