Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp5497 auto &State = DelayedTypos[TE]; in createDelayedTypo()
5507 auto Entry = DelayedTypos.find(TE); in getTypoExprState()
5508 assert(Entry != DelayedTypos.end() && in getTypoExprState()
5514 DelayedTypos.erase(TE); in clearDelayedTypo()
H A DSema.cpp1069 for (const auto &Typo : DelayedTypos) { in ActOnEndOfTranslationUnitFragment()
1073 DelayedTypos.clear(); in ActOnEndOfTranslationUnitFragment()
H A DSemaExprCXX.cpp8471 auto TyposResolved = DelayedTypos.size(); in CorrectDelayedTyposInExpr()
8473 TyposResolved -= DelayedTypos.size(); in CorrectDelayedTyposInExpr()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4067 llvm::MapVector<TypoExpr *, TypoExprState> DelayedTypos; variable