Home | History | Annotate | Download | only in src

Lines Matching full:uc32

61 uc32 Scanner::ScanHexNumber(int expected_length) {
64 uc32 digits[4] = { 0, 0, 0, 0 };
65 uc32 x = 0;
244 static inline bool IsByteOrderMark(uc32 c) {
317 uc32 ch = c0_;
615 uc32 c = c0_;
666 uc32 Scanner::ScanOctalEscape(uc32 c, int length) {
667 uc32 x = c - '0';
690 uc32 quote = c0_;
696 uc32 c = c0_;
804 uc32 Scanner::ScanIdentifierUnicodeEscape() {
808 uc32 result = ScanHexNumber(4);
929 uc32 c = ScanIdentifierUnicodeEscape();
940 uc32 first_char = c0_;
947 uc32 next_char = c0_;
974 uc32 c = ScanIdentifierUnicodeEscape();
1042 uc32 chars_read[6] = {'\\', 'u', 0, 0, 0, 0};