Home | History | Annotate | Download | only in i18n

Lines Matching refs:fFoldChars

22    fUText(text), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
31 if (fFoldChars == NULL) {
38 fFoldLength = ucase_toFullFolding(fcsp, originalC, &fFoldChars, U_FOLD_CASE_DEFAULT);
46 fFoldChars = NULL;
53 U16_NEXT(fFoldChars, fFoldIndex, fFoldLength, foldedC);
55 fFoldChars = NULL;
62 return fFoldChars != NULL;
68 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
79 if (fFoldChars == NULL) {
87 fFoldLength = ucase_toFullFolding(fcsp, originalC, &fFoldChars, U_FOLD_CASE_DEFAULT);
95 fFoldChars = NULL;
102 U16_NEXT(fFoldChars, fFoldIndex, fFoldLength, foldedC);
104 fFoldChars = NULL;
111 return fFoldChars != NULL;