Home
last modified time | relevance | path

Searched refs:NumForLoops (Results 1 – 3 of 3) sorted by relevance

/external/clang/include/clang/AST/
DOpenMPClause.h507 Stmt *NumForLoops; variable
510 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops()
523 NumForLoops(Num) {} in OMPCollapseClause()
529 LParenLoc(SourceLocation()), NumForLoops(nullptr) {} in OMPCollapseClause()
537 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops()
543 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children()
883 Stmt *NumForLoops; variable
886 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops()
899 NumForLoops(Num) {} in OMPOrderedClause()
905 LParenLoc(SourceLocation()), NumForLoops(nullptr) {} in OMPOrderedClause()
[all …]
/external/clang/lib/Sema/
DSemaOpenMP.cpp7515 OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops, in ActOnOpenMPCollapseClause() argument
7525 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse); in ActOnOpenMPCollapseClause()
7535 Expr *NumForLoops) { in ActOnOpenMPOrderedClause() argument
7541 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause()
7543 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered); in ActOnOpenMPOrderedClause()
7546 NumForLoops = NumForLoopsResult.get(); in ActOnOpenMPOrderedClause()
7548 NumForLoops = nullptr; in ActOnOpenMPOrderedClause()
7549 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops); in ActOnOpenMPOrderedClause()
7551 OMPOrderedClause(NumForLoops, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPOrderedClause()
/external/clang/include/clang/Sema/
DSema.h8280 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops,
8288 Expr *NumForLoops = nullptr);