Searched refs:PostUpdate (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 518 SourceLocation ColonLoc, Stmt *PreInit, Expr *PostUpdate) { in Create() argument 527 Clause->setPostUpdateExpr(PostUpdate); in Create() 591 Expr *PostUpdate) { in Create() argument 613 Clause->setPostUpdateExpr(PostUpdate); in Create() 801 ArrayRef<Expr *> CopyArrayElems, Stmt *PreInit, Expr *PostUpdate) { in Create() argument 813 Clause->setPostUpdateExpr(PostUpdate); in Create() 872 Expr *PostUpdate) { in Create() argument 882 Clause->setPostUpdateExpr(PostUpdate); in Create() 934 ArrayRef<Expr *> TaskgroupDescriptors, Stmt *PreInit, Expr *PostUpdate) { in Create() argument 945 Clause->setPostUpdateExpr(PostUpdate); in Create()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 237 Expr *PostUpdate = nullptr; variable 245 void setPostUpdateExpr(Expr *S) { PostUpdate = S; } in setPostUpdateExpr() 249 const Expr *getPostUpdateExpr() const { return PostUpdate; } in getPostUpdateExpr() 252 Expr *getPostUpdateExpr() { return PostUpdate; } in getPostUpdateExpr() 3038 SourceLocation ColonLoc, Stmt *PreInit, Expr *PostUpdate); 3412 Stmt *PreInit, Expr *PostUpdate); 3685 ArrayRef<Expr *> ReductionOps, Stmt *PreInit, Expr *PostUpdate); 3930 Stmt *PreInit, Expr *PostUpdate); 4165 Expr *PostUpdate);
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 1212 if (const Expr *PostUpdate = C->getPostUpdateExpr()) in EmitOMPLastprivateClauseFinal() local 1213 EmitIgnoredExpr(PostUpdate); in EmitOMPLastprivateClauseFinal() 1479 if (const Expr *PostUpdate = C->getPostUpdateExpr()) { in emitPostUpdateForReductionClause() local 1490 CGF.EmitIgnoredExpr(PostUpdate); in emitPostUpdateForReductionClause() 2238 if (const Expr *PostUpdate = C->getPostUpdateExpr()) in EmitOMPLinearClauseFinal() local 2239 EmitIgnoredExpr(PostUpdate); in EmitOMPLinearClauseFinal()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 9554 Expr *PostUpdate = nullptr; in buildPostUpdate() local 9562 PostUpdate = PostUpdate in buildPostUpdate() 9564 PostUpdate, ConvE) in buildPostUpdate() 9569 return PostUpdate; in buildPostUpdate()
|