Lines Matching refs:CurrentSema
97 Sema *CurrentSema; member in __anon683099b50111::NamespaceTypoProvider
101 : CorrectFrom(From), CorrectTo(To), CurrentSema(nullptr), CallCount(0) {} in NamespaceTypoProvider()
103 void InitializeSema(Sema &S) override { CurrentSema = &S; } in InitializeSema()
105 void ForgetSema() override { CurrentSema = nullptr; } in ForgetSema()
113 if (CurrentSema && Typo.getName().getAsString() == CorrectFrom) { in CorrectTypo()
115 ASTContext &Context = CurrentSema->getASTContext(); in CorrectTypo()
117 DestContext = CurrentSema->computeDeclContext(*SS, EnteringContext); in CorrectTypo()
121 CurrentSema->getPreprocessor().getIdentifierInfo(CorrectTo); in CorrectTypo()
139 Sema *CurrentSema; member in __anon683099b50111::FunctionTypoProvider
143 : CorrectFrom(From), CorrectTo(To), CurrentSema(nullptr), CallCount(0) {} in FunctionTypoProvider()
145 void InitializeSema(Sema &S) override { CurrentSema = &S; } in InitializeSema()
147 void ForgetSema() override { CurrentSema = nullptr; } in ForgetSema()
155 if (CurrentSema && Typo.getName().getAsString() == CorrectFrom) { in CorrectTypo()
157 ASTContext &Context = CurrentSema->getASTContext(); in CorrectTypo()
159 DestContext = CurrentSema->computeDeclContext(*SS, EnteringContext); in CorrectTypo()
163 CurrentSema->getPreprocessor().getIdentifierInfo(CorrectTo); in CorrectTypo()