Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp664 if (!ReferencedBlockVars) in getReferencedBlockVars()
665 ReferencedBlockVars = new llvm::DenseMap<const BlockDecl*,void*>(); in getReferencedBlockVars()
668 LazyInitializeReferencedDecls(BD, (*ReferencedBlockVars)[BD], A); in getReferencedBlockVars()
687 delete ReferencedBlockVars; in ~AnalysisDeclContext()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1700 const auto &ReferencedBlockVars = AC->getReferencedBlockVars(BC->getDecl()); in LazyInitializeReferencedVars() local
1702 std::distance(ReferencedBlockVars.begin(), ReferencedBlockVars.end()); in LazyInitializeReferencedVars()
1718 for (const auto *VD : ReferencedBlockVars) { in LazyInitializeReferencedVars()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h92 llvm::DenseMap<const BlockDecl *, void *> *ReferencedBlockVars = nullptr; variable