Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DScopeInfo.h229 llvm::DenseMap<VarDecl*, unsigned> CaptureMap; variable
251 CaptureMap[Var] = Captures.size(); in addCapture()
272 return CaptureMap.count(Var); in isCaptured()
279 return Captures[CaptureMap[Var] - 1]; in getCapture()
284 = CaptureMap.find(Var); in getCapture()
285 assert(Known != CaptureMap.end() && "Variable has not been captured"); in getCapture()
/external/clang/lib/Sema/
DTreeTransform.h8831 assert(blockScope->CaptureMap.count(newCapture)); in TransformBlockExpr()
DSemaExpr.cpp10051 if (CSI->CaptureMap.count(Var)) { in tryCaptureVariable()