Home | History | Annotate | Download | only in AST

Lines Matching defs:NumThreads

213   Stmt *NumThreads;
217 void setNumThreads(Expr *NThreads) { NumThreads = NThreads; }
220 /// \brief Build 'num_threads' clause with condition \a NumThreads.
222 /// \param NumThreads Number of threads for the construct.
227 OMPNumThreadsClause(Expr *NumThreads, SourceLocation StartLoc,
230 NumThreads(NumThreads) {}
236 LParenLoc(SourceLocation()), NumThreads(nullptr) {}
244 Expr *getNumThreads() const { return cast_or_null<Expr>(NumThreads); }
250 StmtRange children() { return StmtRange(&NumThreads, &NumThreads + 1); }