Searched refs:isAllowedIDChar (Results 1 – 2 of 2) sorted by relevance
/external/clang/lib/Lex/ |
D | Lexer.cpp | 1383 static bool isAllowedIDChar(uint32_t C, const LangOptions &LangOpts) { in isAllowedIDChar() function 1402 assert(isAllowedIDChar(C, LangOpts)); in isAllowedInitiallyIDChar() 1463 if (CodePoint == 0 || !isAllowedIDChar(CodePoint, LangOpts)) in tryConsumeIdentifierUCN() 1490 !isAllowedIDChar(static_cast<uint32_t>(CodePoint), LangOpts)) in tryConsumeIdentifierUTF8Char() 2851 if (isAllowedIDChar(C, LangOpts) && isAllowedInitiallyIDChar(C, LangOpts)) { in LexUnicode() 2865 !isASCII(*BufferPtr) && !isAllowedIDChar(C, LangOpts)) { in LexUnicode()
|
/external/llvm-project/clang/lib/Lex/ |
D | Lexer.cpp | 1434 static bool isAllowedIDChar(uint32_t C, const LangOptions &LangOpts) { in isAllowedIDChar() function 1455 assert(isAllowedIDChar(C, LangOpts)); in isAllowedInitiallyIDChar() 1600 if (CodePoint == 0 || !isAllowedIDChar(CodePoint, LangOpts)) in tryConsumeIdentifierUCN() 1627 !isAllowedIDChar(static_cast<uint32_t>(CodePoint), LangOpts)) in tryConsumeIdentifierUTF8Char() 3117 if (isAllowedIDChar(C, LangOpts) && isAllowedInitiallyIDChar(C, LangOpts)) { in LexUnicode() 3133 !isASCII(*BufferPtr) && !isAllowedIDChar(C, LangOpts)) { in LexUnicode()
|