Searched refs:PostUpdate (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp410 SourceLocation ColonLoc, Stmt *PreInit, Expr *PostUpdate) {
419 Clause->setPostUpdateExpr(PostUpdate);
482 Stmt *PreInit, Expr *PostUpdate) {
503 Clause->setPostUpdateExpr(PostUpdate);
656 Expr *PostUpdate) {
666 Clause->setPostUpdateExpr(PostUpdate);
709 Expr *PostUpdate) {
719 Clause->setPostUpdateExpr(PostUpdate);
771 ArrayRef<Expr *> TaskgroupDescriptors, Stmt *PreInit, Expr *PostUpdate) {
782 Clause->setPostUpdateExpr(PostUpdate);
405 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, ArrayRef<Expr *> DstExprs, ArrayRef<Expr *> AssignmentOps, OpenMPLastprivateModifier LPKind, SourceLocation LPKindLoc, SourceLocation ColonLoc, Stmt *PreInit, Expr *PostUpdate) argument
477 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, OpenMPLinearClauseKind Modifier, SourceLocation ModifierLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep, Stmt *PreInit, Expr *PostUpdate) argument
650 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs, ArrayRef<Expr *> ReductionOps, Stmt *PreInit, Expr *PostUpdate) argument
703 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs, ArrayRef<Expr *> ReductionOps, Stmt *PreInit, Expr *PostUpdate) argument
765 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs, ArrayRef<Expr *> ReductionOps, ArrayRef<Expr *> TaskgroupDescriptors, Stmt *PreInit, Expr *PostUpdate) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h150 Expr *PostUpdate = nullptr; member in class:clang::OMPClauseWithPostUpdate
158 void setPostUpdateExpr(Expr *S) { PostUpdate = S; }
162 const Expr *getPostUpdateExpr() const { return PostUpdate; }
165 Expr *getPostUpdateExpr() { return PostUpdate; }
2270 /// \param PostUpdate Expression that must be executed after exit from the
2277 SourceLocation ColonLoc, Stmt *PreInit, Expr *PostUpdate);
2582 /// \param PostUpdate Expression that must be executed after exit from the
2590 ArrayRef<Expr *> ReductionOps, Stmt *PreInit, Expr *PostUpdate);
2816 /// \param PostUpdate Expression that must be executed after exit from the
2824 ArrayRef<Expr *> ReductionOps, Stmt *PreInit, Expr *PostUpdate);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1116 if (const Expr *PostUpdate = C->getPostUpdateExpr())
1117 EmitIgnoredExpr(PostUpdate);
1263 if (const Expr *PostUpdate = C->getPostUpdateExpr()) {
1274 CGF.EmitIgnoredExpr(PostUpdate);
1640 if (const Expr *PostUpdate = C->getPostUpdateExpr())
1641 EmitIgnoredExpr(PostUpdate);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp7249 Expr *PostUpdate = nullptr;
7257 PostUpdate = PostUpdate
7259 PostUpdate, ConvE)
7264 return PostUpdate;

Completed in 277 milliseconds