HomeSort by: relevance | last modified time | path
    Searched defs:isKeyword (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
TypoCorrection.h 202 bool isKeyword() const {
208 bool isKeyword(const char (&Str)[StrLen]) const {
209 return isKeyword() && getCorrectionAsIdentifierInfo()->isStr(Str);
233 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
241 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
262 return (!isKeyword() && !CorrectionDecls.empty());
  /src/external/apache2/llvm/dist/clang/lib/Basic/
IdentifierTable.cpp 252 bool IdentifierInfo::isKeyword(const LangOptions &LangOpts) const {
265 if (!LangOpts.CPlusPlus || !isKeyword(LangOpts))
273 return !isKeyword(LangOptsNoCPP);

Completed in 50 milliseconds