Home
last modified time | relevance | path

Searched refs:isAllowedIDChar (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/Lex/
DLexer.cpp1383 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()