Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1652 const auto &ReferencedBlockVars = AC->getReferencedBlockVars(BC->getDecl()); in LazyInitializeReferencedVars() local
1654 std::distance(ReferencedBlockVars.begin(), ReferencedBlockVars.end()); in LazyInitializeReferencedVars()
1672 for (const auto *VD : ReferencedBlockVars) { in LazyInitializeReferencedVars()
/openbsd/gnu/llvm/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h92 llvm::DenseMap<const BlockDecl *, void *> *ReferencedBlockVars = nullptr; variable