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

References

tools/clang/lib/Lex/Lexer.cpp
 1819   char C = getCharAndSize(CurPtr, Size);
 1823     if (C == '\\' && tryConsumeIdentifierUCN(CurPtr, Size, Result))
 1825     else if (!isASCII(C) && tryConsumeIdentifierUTF8Char(CurPtr))
 1828       return CurPtr;
 1833       Diag(CurPtr,
 1836         << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " ");
 1837     return CurPtr;
 1859         char Next = getCharAndSizeNoWarn(CurPtr + Consumed, NextSize,
 1880         Diag(CurPtr, getLangOpts().MSVCCompat
 1883           << FixItHint::CreateInsertion(getSourceLocation(CurPtr), " ");
 1884       return CurPtr;
 1887     CurPtr = ConsumeChar(CurPtr, Size, Result);
 1887     CurPtr = ConsumeChar(CurPtr, Size, Result);
 1892     C = getCharAndSize(CurPtr, Size);
 1893     if (isIdentifierBody(C)) { CurPtr = ConsumeChar(CurPtr, Size, Result); }
 1893     if (isIdentifierBody(C)) { CurPtr = ConsumeChar(CurPtr, Size, Result); }
 1894     else if (C == '\\' && tryConsumeIdentifierUCN(CurPtr, Size, Result)) {}
 1895     else if (!isASCII(C) && tryConsumeIdentifierUTF8Char(CurPtr)) {}
 1899   return CurPtr;