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

/external/clang/include/clang/AST/
H A DOpenMPClause.h1759 void setStep(Expr *Step) { *(getFinals().end()) = Step; }
1762 void setCalcStep(Expr *CalcStep) { *(getFinals().end() + 1) = CalcStep; }
1826 MutableArrayRef<Expr *> getFinals() { function in class:clang::OMPLinearClause
1829 ArrayRef<const Expr *> getFinals() const { function in class:clang::OMPLinearClause
1886 Expr *getStep() { return *(getFinals().end()); }
1888 const Expr *getStep() const { return *(getFinals().end()); }
1890 Expr *getCalcStep() { return *(getFinals().end() + 1); }
1892 const Expr *getCalcStep() const { return *(getFinals().end() + 1); }
1944 return finals_range(getFinals().begin(), getFinals()
[all...]
H A DStmtOpenMP.h364 MutableArrayRef<Expr *> getFinals() { function in class:clang::OMPLoopDirective
681 ArrayRef<Expr *> finals() { return getFinals(); }
684 return const_cast<OMPLoopDirective *>(this)->getFinals();
/external/clang/lib/AST/
H A DStmtOpenMP.cpp54 std::copy(A.begin(), A.end(), getFinals().begin());

Completed in 162 milliseconds