Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DIdentifierTable.h200 unsigned IsKeywordInCpp : 1;
219 IsRestrictExpansion(false), IsFinal(false), IsKeywordInCpp(false) {} in IdentifierInfo()
452 bool IsKeywordInCPlusPlus() const { return IsKeywordInCpp; } in IsKeywordInCPlusPlus()
453 void setIsKeywordInCPlusPlus(bool Val = true) { IsKeywordInCpp = Val; }
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp252 static bool IsKeywordInCpp(unsigned Flags) { in IsKeywordInCpp() function
280 if (!LangOpts.ObjC && IsKeywordInCpp(Flags)) in AddKeyword()