Lines Matching refs:Cap
8341 getMapModifiersForPrivateClauses(const CapturedStmt::Capture &Cap) const { in getMapModifiersForPrivateClauses()
8342 assert(Cap.capturesVariable() && "Expected capture by reference only!"); in getMapModifiersForPrivateClauses()
8347 if (FirstPrivateDecls.count(Cap.getCapturedVar())) { in getMapModifiersForPrivateClauses()
8348 if (Cap.getCapturedVar()->getType()->isAnyPointerType()) in getMapModifiersForPrivateClauses()
8354 auto I = LambdasMap.find(Cap.getCapturedVar()->getCanonicalDecl()); in getMapModifiersForPrivateClauses()
9035 void generateInfoForCapture(const CapturedStmt::Capture *Cap, in generateInfoForCapture() argument
9038 assert(!Cap->capturesVariableArrayType() && in generateInfoForCapture()
9042 const ValueDecl *VD = Cap->capturesThis() in generateInfoForCapture()
9044 : Cap->getCapturedVar()->getCanonicalDecl(); in generateInfoForCapture()
9062 (Cap->capturesVariable() ? OMP_MAP_TO : OMP_MAP_LITERAL) | in generateInfoForCapture()
12318 for (const CapturedStmt::Capture &Cap : CS->captures()) { in tryToDisableInnerAnalysis() local
12319 if (Cap.capturesVariable() || Cap.capturesVariableByCopy()) in tryToDisableInnerAnalysis()
12320 NeedToCheckForLPCs.insert(Cap.getCapturedVar()); in tryToDisableInnerAnalysis()