Lines Matching refs:uc32
66 uc32 Scanner::ScanHexNumber(int expected_length) { in ScanHexNumber()
70 uc32 x = 0; in ScanHexNumber()
88 uc32 Scanner::ScanUnlimitedLengthHexNumber(int max_value, int beg_pos) { in ScanUnlimitedLengthHexNumber()
89 uc32 x = 0; in ScanUnlimitedLengthHexNumber()
294 static inline bool IsLittleEndianByteOrderMark(uc32 c) { in IsLittleEndianByteOrderMark()
430 uc32 ch = c0_; in SkipMultiLineComment()
762 uc32 c = c0_; in ScanEscape()
819 uc32 Scanner::ScanOctalEscape(uc32 c, int length) { in ScanOctalEscape()
820 uc32 x = c - '0'; in ScanOctalEscape()
843 uc32 quote = c0_; in ScanString()
866 uc32 c = c0_; in ScanString()
904 uc32 c = c0_; in ScanTemplateSpan()
918 uc32 lastChar = c0_; in ScanTemplateSpan()
1065 uc32 first_char = c0_; in ScanNumber()
1123 uc32 Scanner::ScanIdentifierUnicodeEscape() { in ScanIdentifierUnicodeEscape()
1132 uc32 Scanner::ScanUnicodeEscape() { in ScanUnicodeEscape()
1138 uc32 cp = ScanUnlimitedLengthHexNumber<capture_raw>(0x10ffff, begin); in ScanUnicodeEscape()
1326 uc32 c = ScanIdentifierUnicodeEscape(); in ScanIdentifierOrKeyword()
1336 uc32 first_char = c0_; in ScanIdentifierOrKeyword()
1344 uc32 next_char = c0_; in ScanIdentifierOrKeyword()
1368 uc32 c = ScanIdentifierUnicodeEscape(); in ScanIdentifierSuffix()