Home | History | Annotate | Download | only in parsing

Lines Matching refs:uc32

37   static const uc32 kEndOfInput = -1;
43 inline uc32 Advance() {
45 return static_cast<uc32>(*(buffer_cursor_++));
47 return static_cast<uc32>(*(buffer_cursor_++));
196 static const uc32 kEndOfInput = Utf16CharacterStream::kEndOfInput;
377 INLINE(void AddChar(uc32 code_unit)) {
379 code_unit <= static_cast<uc32>(unibrow::Latin1::kMaxChar)) {
441 void AddCharSlow(uc32 code_unit);
467 uc32 ScanOctalEscape(uc32 c, int length);
527 INLINE(void AddLiteralChar(uc32 c)) {
537 INLINE(void AddRawLiteralChar(uc32 c)) {
571 uc32 c1 = source_->Advance();
580 void PushBack(uc32 ch) {
581 if (c0_ > static_cast<uc32>(unibrow::Utf16::kMaxNonSurrogateCharCode)) {
603 inline Token::Value Select(uc32 next, Token::Value then, Token::Value else_) {
673 uc32 ScanHexNumber(int expected_length);
678 uc32 ScanUnlimitedLengthHexNumber(int max_value, int beg_pos);
706 uc32 ScanIdentifierUnicodeEscape();
709 uc32 ScanUnicodeEscape();
761 uc32 c0_;