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

References

tools/clang/include/clang/Basic/TokenKinds.h
   72   return (K == tok::identifier) || (K == tok::raw_identifier);
tools/clang/include/clang/Lex/Preprocessor.h
   92     assert(Kind != tok::raw_identifier && "Raw identifiers are not supported.");
tools/clang/include/clang/Lex/Token.h
  180     assert(isNot(tok::raw_identifier) &&
  206     assert(is(tok::raw_identifier));
  210     assert(is(tok::raw_identifier));
tools/clang/lib/ARCMigrate/Transforms.cpp
  406   if (tok.isNot(tok::raw_identifier)) return false;
  422     if (tok.isNot(tok::raw_identifier)) return false;
  487   if (tok.isNot(tok::raw_identifier)) return false;
  503   if (tok.isNot(tok::raw_identifier)) return false;
tools/clang/lib/Format/FormatTokenLexer.cpp
  759   } else if (FormatTok->Tok.is(tok::raw_identifier)) {
tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
  370   if (RawToken.is(tok::raw_identifier))
  416       if (RawToken.is(tok::raw_identifier))
tools/clang/lib/Frontend/Rewrite/RewriteMacros.cpp
   80     if (RawTok.is(tok::raw_identifier))
tools/clang/lib/Lex/Lexer.cpp
  404   if (Tok.is(tok::raw_identifier))
  660       if (TheTok.getKind() == tok::raw_identifier && !TheTok.needsCleaning()) {
 1655     FormTokenWithChars(Result, CurPtr, tok::raw_identifier);
 2946   FormTokenWithChars(Result, End, tok::raw_identifier);
tools/clang/lib/Lex/ModuleMap.cpp
 1490   case tok::raw_identifier: {
 1607         return !LToken.isAtStartOfLine() && LToken.is(tok::raw_identifier) &&
tools/clang/lib/Lex/PPDirectives.cpp
  472     if (Tok.isNot(tok::raw_identifier)) {
tools/clang/lib/Lex/Pragma.cpp
  432     if (Tok.isNot(tok::raw_identifier)) {
  588   MacroTok.setKind(tok::raw_identifier);
  798     if (Tok.getKind() != tok::raw_identifier ||
tools/clang/lib/Lex/Preprocessor.cpp
  464   if (Tok.isNot(tok::raw_identifier) && !Tok.hasUCN()) {
  496   if (Tok.is(tok::raw_identifier))
tools/clang/lib/Lex/TokenConcatenation.cpp
  218   case tok::raw_identifier:
tools/clang/lib/Lex/TokenLexer.cpp
  812       Result.setKind(tok::raw_identifier);
  917   if (LHSTok.is(tok::raw_identifier)) {
tools/clang/lib/Rewrite/HTMLRewrite.cpp
  470     case tok::raw_identifier: {
  562     if (Tok.is(tok::raw_identifier))
tools/clang/lib/Sema/SemaObjCProperty.cpp
  334     if (Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == attrName) {
tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
 1156         if (TheTok.is(tok::raw_identifier))
tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
   60                  Tok.is(tok::raw_identifier) &&
   62                  Tok.is(tok::raw_identifier) &&
  127       Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == "include") {
tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
   28       R.getEnd(), tok::raw_identifier, SM, LangOpts,
tools/clang/lib/Tooling/Syntax/Tokens.cpp
  256     if (T.getKind() == tok::raw_identifier && !T.needsCleaning() &&
tools/clang/tools/extra/clang-tidy/android/ComparisonInTempFailureRetryCheck.cpp
   37       if (Tok.getKind() == tok::raw_identifier &&
tools/clang/tools/extra/clang-tidy/bugprone/MacroParenthesesCheck.cpp
   87   if (!Tok->isOneOf(tok::identifier, tok::raw_identifier, tok::coloncolon))
   92          Tok->isOneOf(tok::identifier, tok::raw_identifier, tok::coloncolon,
  183     if (!Tok.isOneOf(tok::identifier, tok::raw_identifier))
tools/clang/tools/extra/clang-tidy/google/ExplicitConstructorCheck.cpp
  115       return Tok.is(tok::raw_identifier) &&
tools/clang/tools/extra/clang-tidy/google/IntegerTypesCheck.cpp
   31   if (Tok.is(tok::raw_identifier)) {
tools/clang/tools/extra/clang-tidy/modernize/RedundantVoidArgCheck.cpp
  152       if (ProtoToken.is(tok::TokenKind::raw_identifier) &&
tools/clang/tools/extra/clang-tidy/modernize/UseOverrideCheck.cpp
   69     if (Tok.is(tok::raw_identifier)) {
tools/clang/tools/extra/clang-tidy/modernize/UseTrailingReturnTypeCheck.cpp
  139     if (T.is(tok::raw_identifier)) {
  221     if (T.is(tok::raw_identifier)) {
tools/clang/tools/extra/clang-tidy/modernize/UseUsingCheck.cpp
   64     case tok::raw_identifier:
tools/clang/tools/extra/clang-tidy/readability/AvoidConstParamsInDecls.cpp
   65     if (Tok.is(tok::raw_identifier)) {
tools/clang/tools/extra/clang-tidy/utils/LexerUtils.cpp
  108     if (Tok.is(tok::raw_identifier)) {
tools/clang/tools/extra/clangd/IncludeFixer.cpp
  205     if (!IDTok || !IDTok->is(tok::raw_identifier))
tools/clang/tools/extra/clangd/SourceCode.cpp
  275   if (Tok.is(tok::TokenKind::raw_identifier))
  747     case tok::raw_identifier:
  792     case tok::raw_identifier:
  987   if (Result.is(tok::raw_identifier))
tools/clang/tools/extra/clangd/XRefs.cpp
  865       !Tok.is(tok::raw_identifier)) {
tools/clang/tools/libclang/CIndex.cpp
 6747     } else if (Tok.is(tok::raw_identifier)) {
 7489       if (Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == "define") {
 7493         if (Tok.is(tok::raw_identifier)) {
 8838   if (Tok.isNot(tok::raw_identifier))
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
  542             case clang::tok::TokenKind::raw_identifier:
tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
  223     case tok::raw_identifier:
  257   if (HasMoreTokens() && Peek().is(tok::raw_identifier) &&
  281   if (HasMoreTokens() && Peek().is(tok::raw_identifier) &&
  482     case tok::raw_identifier: // Just a name.
  571       if (ConsumeToken(tok::raw_identifier)) {
  651     if (token.is(clang::tok::raw_identifier)) {
tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
   70     case tok::raw_identifier: