Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDAnalysisDeclContext.cpp47 ReferencedBlockVars(nullptr), in AnalysisDeclContext()
60 ReferencedBlockVars(nullptr), in AnalysisDeclContext()
535 if (!ReferencedBlockVars) in getReferencedBlockVars()
536 ReferencedBlockVars = new llvm::DenseMap<const BlockDecl*,void*>(); in getReferencedBlockVars()
539 LazyInitializeReferencedDecls(BD, (*ReferencedBlockVars)[BD], A); in getReferencedBlockVars()
558 delete ReferencedBlockVars; in ~AnalysisDeclContext()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDMemRegion.cpp1378 const auto &ReferencedBlockVars = AC->getReferencedBlockVars(BC->getDecl()); in LazyInitializeReferencedVars() local
1380 std::distance(ReferencedBlockVars.begin(), ReferencedBlockVars.end()); in LazyInitializeReferencedVars()
1397 for (const VarDecl *VD : ReferencedBlockVars) { in LazyInitializeReferencedVars()
/NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/
HDAnalysisContext.h86 llvm::DenseMap<const BlockDecl*,void*> *ReferencedBlockVars; variable