Home
last modified time | relevance | path

Searched refs:getAssociatedExpression (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Sema/
DSemaOpenMP.cpp926 if (isa<DeclRefExpr>(EI->getAssociatedExpression())) in IsOpenMPCapturedByRef()
933 if (isa<ArraySubscriptExpr>(EI->getAssociatedExpression()) || in IsOpenMPCapturedByRef()
934 isa<OMPArraySectionExpr>(EI->getAssociatedExpression()) || in IsOpenMPCapturedByRef()
935 isa<MemberExpr>(EI->getAssociatedExpression())) { in IsOpenMPCapturedByRef()
10682 auto *RE = StackComponents.front().getAssociatedExpression(); in CheckMapConflicts()
10698 (isa<ArraySubscriptExpr>(CI->getAssociatedExpression()) || in CheckMapConflicts()
10699 isa<OMPArraySectionExpr>(CI->getAssociatedExpression())) && in CheckMapConflicts()
10700 (isa<ArraySubscriptExpr>(SI->getAssociatedExpression()) || in CheckMapConflicts()
10701 isa<OMPArraySectionExpr>(SI->getAssociatedExpression()))) { in CheckMapConflicts()
10702 SemaRef.Diag(CI->getAssociatedExpression()->getExprLoc(), in CheckMapConflicts()
[all …]
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp5262 if (auto *ME = dyn_cast<MemberExpr>(I->getAssociatedExpression())) { in generateInfoForComponentList()
5269 BP = CGF.EmitLValue(cast<DeclRefExpr>(I->getAssociatedExpression())) in generateInfoForComponentList()
5301 isFinalArraySectionExpression(I->getAssociatedExpression()); in generateInfoForComponentList()
5307 dyn_cast<OMPArraySectionExpr>(I->getAssociatedExpression()); in generateInfoForComponentList()
5313 I->getAssociatedExpression()->getType()->isAnyPointerType(); in generateInfoForComponentList()
5320 isa<MemberExpr>(Next->getAssociatedExpression()) || in generateInfoForComponentList()
5321 isa<ArraySubscriptExpr>(Next->getAssociatedExpression()) || in generateInfoForComponentList()
5322 isa<OMPArraySectionExpr>(Next->getAssociatedExpression())) && in generateInfoForComponentList()
5328 auto *LB = CGF.EmitLValue(I->getAssociatedExpression()).getPointer(); in generateInfoForComponentList()
5329 auto *Size = getExprTypeSize(I->getAssociatedExpression()); in generateInfoForComponentList()
/external/clang/lib/Serialization/
DASTWriterStmt.cpp2053 Record.AddStmt(M.getAssociatedExpression()); in VisitOMPMapClause()
2120 Record.AddStmt(M.getAssociatedExpression()); in VisitOMPToClause()
2140 Record.AddStmt(M.getAssociatedExpression()); in VisitOMPFromClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2812 Expr *getAssociatedExpression() const { return AssociatedExpression; } in getAssociatedExpression() function