Lines Matching refs:OMPDependClause
1054 OMPDependClause *
1055 OMPDependClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
1061 alignof(OMPDependClause)); in Create()
1062 OMPDependClause *Clause = new (Mem) in Create()
1063 OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size(), NumLoops); in Create()
1075 OMPDependClause *OMPDependClause::CreateEmpty(const ASTContext &C, unsigned N, in CreateEmpty()
1079 alignof(OMPDependClause)); in CreateEmpty()
1080 return new (Mem) OMPDependClause(N, NumLoops); in CreateEmpty()
1083 void OMPDependClause::setLoopData(unsigned NumLoop, Expr *Cnt) { in setLoopData()
1093 Expr *OMPDependClause::getLoopData(unsigned NumLoop) { in getLoopData()
1103 const Expr *OMPDependClause::getLoopData(unsigned NumLoop) const { in getLoopData()
1113 void OMPDependClause::setModifier(Expr *DepModifier) { in setModifier()
1116 Expr *OMPDependClause::getModifier() { return *getVarRefs().end(); } in getModifier()
2286 void OMPClausePrinter::VisitOMPDependClause(OMPDependClause *Node) { in VisitOMPDependClause()