Searched refs:NumForLoops (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 909 Stmt *NumForLoops = nullptr; variable 912 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 924 LParenLoc(LParenLoc), NumForLoops(Num) {} in OMPCollapseClause() 938 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops() 940 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children() 943 return const_child_range(&NumForLoops, &NumForLoops + 1); in children() 1592 Stmt *NumForLoops = nullptr; variable 1607 LParenLoc(LParenLoc), NumForLoops(Num), NumberOfLoops(NumLoops) {} in OMPOrderedClause() 1615 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 1640 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 14000 OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops, in ActOnOpenMPCollapseClause() argument 14010 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse); in ActOnOpenMPCollapseClause() 14020 Expr *NumForLoops) { in ActOnOpenMPOrderedClause() argument 14026 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause() 14028 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered); in ActOnOpenMPOrderedClause() 14031 NumForLoops = NumForLoopsResult.get(); in ActOnOpenMPOrderedClause() 14033 NumForLoops = nullptr; in ActOnOpenMPOrderedClause() 14036 Context, NumForLoops, NumForLoops ? DSAStack->getAssociatedLoops() : 0, in ActOnOpenMPOrderedClause() 14038 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops, Clause); in ActOnOpenMPOrderedClause()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | Sema.h | 10862 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops, 10870 Expr *NumForLoops = nullptr);
|