Home
last modified time | relevance | path

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

/external/clang/lib/Lex/
DLexer.cpp1356 static bool isAllowedIDChar(uint32_t C, const LangOptions &LangOpts) { in isAllowedIDChar() function
1375 assert(isAllowedIDChar(C, LangOpts)); in isAllowedInitiallyIDChar()
1436 if (CodePoint == 0 || !isAllowedIDChar(CodePoint, LangOpts)) in tryConsumeIdentifierUCN()
1463 !isAllowedIDChar(static_cast<uint32_t>(CodePoint), LangOpts)) in tryConsumeIdentifierUTF8Char()
2823 if (isAllowedIDChar(C, LangOpts) && isAllowedInitiallyIDChar(C, LangOpts)) { in LexUnicode()
2837 !isASCII(*BufferPtr) && !isAllowedIDChar(C, LangOpts)) { in LexUnicode()