Lines Matching refs:fFoldChars
20 fUText(text), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) { in CaseFoldingUTextIterator()
29 if (fFoldChars == NULL) { in next()
36 fFoldLength = ucase_toFullFolding(fcsp, originalC, &fFoldChars, U_FOLD_CASE_DEFAULT); in next()
44 fFoldChars = NULL; in next()
51 U16_NEXT(fFoldChars, fFoldIndex, fFoldLength, foldedC); in next()
53 fFoldChars = NULL; in next()
60 return fFoldChars != NULL; in inExpansion()
66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) { in CaseFoldingUCharIterator()
77 if (fFoldChars == NULL) { in next()
85 fFoldLength = ucase_toFullFolding(fcsp, originalC, &fFoldChars, U_FOLD_CASE_DEFAULT); in next()
93 fFoldChars = NULL; in next()
100 U16_NEXT(fFoldChars, fFoldIndex, fFoldLength, foldedC); in next()
102 fFoldChars = NULL; in next()
109 return fFoldChars != NULL; in inExpansion()