reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/Basic/TokenKinds.def
  129 TOK(unknown)             // Not a token.
  130 TOK(eof)                 // End of file.
  131 TOK(eod)                 // End of preprocessing directive (end of line inside a
  133 TOK(code_completion)     // Code completion marker
  136 TOK(comment)             // Comment (only in -E -C[C] mode)
  139 TOK(identifier)          // abcde123
  140 TOK(raw_identifier)      // Used only in raw lexing mode.
  144 TOK(numeric_constant)    // 0x123
  147 TOK(char_constant)       // 'a'
  148 TOK(wide_char_constant)  // L'b'
  151 TOK(utf8_char_constant)  // u8'a'
  154 TOK(utf16_char_constant) // u'a'
  155 TOK(utf32_char_constant) // U'a'
  158 TOK(string_literal)      // "foo"
  159 TOK(wide_string_literal) // L"foo"
  162 TOK(header_name)         // <foo>, or "foo" lexed as a header-name
  165 TOK(utf8_string_literal) // u8"foo"
  166 TOK(utf16_string_literal)// u"foo"
  167 TOK(utf32_string_literal)// U"foo"