Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h714 llvm::DenseMap<ValueDecl *, unsigned> CaptureMap; variable
742 CaptureMap[Var] = Captures.size(); in addCapture()
764 bool isCaptured(ValueDecl *Var) const { return CaptureMap.count(Var); } in isCaptured()
773 return Captures[CaptureMap[Var] - 1]; in getCapture()
778 CaptureMap.find(Var); in getCapture()
779 assert(Known != CaptureMap.end() && "Variable has not been captured"); in getCapture()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp18689 if (CSI->CaptureMap.count(Var)) { in isVariableAlreadyCapturedInScopeInfo()
20175 if (auto *C = LSI->CaptureMap.count(D) ? &LSI->getCapture(D) : nullptr) { in FixDependencyOfIdExpressionsInLambdaWithDependentObjectParameter()
H A DTreeTransform.h17052 assert(blockScope->CaptureMap.count(newCapture)); in TransformBlockExpr()