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

References

tools/clang/lib/Lex/Lexer.cpp
 1641   while (isIdentifierBody(C))
 1642     C = *CurPtr++;
 1651   if (isASCII(C) && C != '\\' && C != '?' &&
 1651   if (isASCII(C) && C != '\\' && C != '?' &&
 1651   if (isASCII(C) && C != '\\' && C != '?' &&
 1652       (C != '$' || !LangOpts.DollarIdents)) {
 1703   C = getCharAndSize(CurPtr, Size);
 1705     if (C == '$') {
 1713       C = getCharAndSize(CurPtr, Size);
 1715     } else if (C == '\\' && tryConsumeIdentifierUCN(CurPtr, Size, Result)) {
 1716       C = getCharAndSize(CurPtr, Size);
 1718     } else if (!isASCII(C) && tryConsumeIdentifierUTF8Char(CurPtr)) {
 1719       C = getCharAndSize(CurPtr, Size);
 1721     } else if (!isIdentifierBody(C)) {
 1728     C = getCharAndSize(CurPtr, Size);
 1729     while (isIdentifierBody(C)) {
 1731       C = getCharAndSize(CurPtr, Size);