Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h697 llvm::DenseMap<ValueDecl *, unsigned> CaptureMap; variable
719 CaptureMap[Var] = Captures.size(); in addCapture()
741 bool isCaptured(ValueDecl *Var) const { return CaptureMap.count(Var); } in isCaptured()
750 return Captures[CaptureMap[Var] - 1]; in getCapture()
755 CaptureMap.find(Var); in getCapture()
756 assert(Known != CaptureMap.end() && "Variable has not been captured"); in getCapture()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp19261 if (CSI->CaptureMap.count(Var)) { in isVariableAlreadyCapturedInScopeInfo()
20681 if (!LSI->CaptureMap.count(D)) in FixDependencyOfIdExpressionsInLambdaWithDependentObjectParameter()
H A DTreeTransform.h14879 assert(blockScope->CaptureMap.count(newCapture)); in TransformBlockExpr()