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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h807 Stmt *NumForLoops = nullptr; member in class:clang::OMPCollapseClause
810 void setNumForLoops(Expr *Num) { NumForLoops = Num; }
822 NumForLoops(Num) {}
835 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); }
837 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); }
840 return const_child_range(&NumForLoops, &NumForLoops + 1);
1484 Stmt *NumForLoops = nullptr; member in class:clang::final
1499 NumForLoops(Nu
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp11807 OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops,
11817 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse);
11827 Expr *NumForLoops) {
11833 if (NumForLoops && LParenLoc.isValid()) {
11835 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered);
11838 NumForLoops = NumForLoopsResult.get();
11840 NumForLoops = nullptr;
11843 Context, NumForLoops, NumForLoops ? DSAStack->getAssociatedLoops() : 0,
11845 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops, Claus
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10230 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops,
10238 Expr *NumForLoops = nullptr);

Completed in 132 milliseconds