Lines Matching refs:uc32
4088 uc32 RegExpParser::Next() { in Next()
4322 uc32 c = Next(); in ParseDisjunction()
4347 uc32 first_digit = Next(); in ParseDisjunction()
4358 uc32 octal = ParseOctalLiteral(); in ParseDisjunction()
4386 uc32 controlLetter = Next(); in ParseDisjunction()
4389 uc32 letter = controlLetter & ~('a' ^ 'A'); in ParseDisjunction()
4404 uc32 value; in ParseDisjunction()
4414 uc32 value; in ParseDisjunction()
4494 static bool IsSpecialClassEscape(uc32 c) { in IsSpecialClassEscape()
4555 uc32 c = current(); in ParseBackReferenceIndex()
4650 uc32 RegExpParser::ParseOctalLiteral() { in ParseOctalLiteral()
4654 uc32 value = current() - '0'; in ParseOctalLiteral()
4668 bool RegExpParser::ParseHexEscape(int length, uc32 *value) { in ParseHexEscape()
4670 uc32 val = 0; in ParseHexEscape()
4673 uc32 c = current(); in ParseHexEscape()
4690 uc32 RegExpParser::ParseClassCharacterEscape() { in ParseClassCharacterEscape()
4716 uc32 controlLetter = Next(); in ParseClassCharacterEscape()
4717 uc32 letter = controlLetter & ~('A' ^ 'a'); in ParseClassCharacterEscape()
4740 uc32 value; in ParseClassCharacterEscape()
4750 uc32 value; in ParseClassCharacterEscape()
4762 uc32 result = current(); in ParseClassCharacterEscape()
4773 uc32 first = current(); in ParseClassAtom()
4784 uc32 c = ParseClassCharacterEscape(CHECK_FAILED); in ParseClassAtom()