• Home
  • Raw
  • Download

Lines Matching refs:fC

149     nextChar(fC);                        // Fetch the first char from the pattern string.  in compile()
178 fC.fChar, fLineNum, fCharNum, RegexStateNames[state])); in compile()
183 … if (tableEl->fCharClass < 127 && fC.fQuoted == FALSE && tableEl->fCharClass == fC.fChar) { in compile()
193 if (tableEl->fCharClass == 254 && fC.fQuoted) { in compile()
197 if (tableEl->fCharClass == 253 && fC.fChar == (UChar32)-1) { in compile()
203fC.fQuoted == FALSE && // char is not escaped && in compile()
204 fC.fChar != (UChar32)-1) { // char is not EOF in compile()
205 … if (RegexStaticSets::gStaticSets->fRuleSets[tableEl->fCharClass-128].contains(fC.fChar)) { in compile()
243 nextChar(fC); in compile()
1006 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions()
1021 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions()
1087 literalChar(fC.fChar); in doParseActions()
1095 ((fC.fChar >= 0x41 && fC.fChar<= 0x5A) || // in [A-Z] in doParseActions()
1096 (fC.fChar >= 0x61 && fC.fChar <= 0x7a))) { // in [a-z] in doParseActions()
1099 literalChar(fC.fChar); in doParseActions()
1254 UChar32 c = fC.fChar; in doParseActions()
1398 switch (fC.fChar) { in doParseActions()
1617 s->add(fC.fChar); in doParseActions()
1618 fLastSetLiteral = fC.fChar; in doParseActions()
1628 ((fC.fChar >= 0x41 && fC.fChar<= 0x5A) || // in [A-Z] in doParseActions()
1629 (fC.fChar >= 0x61 && fC.fChar <= 0x7a))) { // in [a-z] in doParseActions()
1634 s->add(fC.fChar); in doParseActions()
1635 fLastSetLiteral = fC.fChar; in doParseActions()
1729 if (fLastSetLiteral > fC.fChar) { in doParseActions()
1733 s->add(fLastSetLiteral, fC.fChar); in doParseActions()
3867 nextChar(fC); in scanNamedChar()
3868 if (fC.fChar != chLBrace) { in scanNamedChar()
3875 nextChar(fC); in scanNamedChar()
3876 if (fC.fChar == chRBrace) { in scanNamedChar()
3879 if (fC.fChar == -1) { in scanNamedChar()
3883 charName.append(fC.fChar); in scanNamedChar()
3902 nextChar(fC); // Continue overall regex pattern processing with char after the '}' in scanNamedChar()
3924 U_ASSERT(fC.fChar == chLowerP || fC.fChar == chP); in scanProp()
3925 UBool negated = (fC.fChar == chP); in scanProp()
3928 nextChar(fC); in scanProp()
3929 if (fC.fChar != chLBrace) { in scanProp()
3934 nextChar(fC); in scanProp()
3935 if (fC.fChar == chRBrace) { in scanProp()
3938 if (fC.fChar == -1) { in scanProp()
3943 propertyName.append(fC.fChar); in scanProp()
3946 nextChar(fC); // Move input scan to position following the closing '}' in scanProp()
3976 U_ASSERT(fC.fChar == chColon); in scanPosixProp()
3989 RegexPatternChar savedfC = fC; in scanPosixProp()
3999 nextChar(fC); in scanPosixProp()
4000 if (fC.fChar == chUp) { in scanPosixProp()
4002 nextChar(fC); in scanPosixProp()
4008 propName.append(fC.fChar); in scanPosixProp()
4009 nextChar(fC); in scanPosixProp()
4010 if (fC.fQuoted || fC.fChar == -1) { in scanPosixProp()
4014 if (fC.fChar == chColon) { in scanPosixProp()
4015 nextChar(fC); in scanPosixProp()
4016 if (fC.fChar == chRBracket) { in scanPosixProp()
4040 fC = savedfC; in scanPosixProp()