Home
last modified time | relevance | path

Searched refs:getUpdates (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4067 MutableArrayRef<Expr *> getUpdates() { in getUpdates() function
4070 ArrayRef<const Expr *> getUpdates() const { in getUpdates() function
4076 return MutableArrayRef<Expr *>(getUpdates().end(), varlist_size()); in getFinals()
4079 return llvm::ArrayRef(getUpdates().end(), varlist_size()); in getFinals()
4212 return updates_range(getUpdates().begin(), getUpdates().end()); in updates()
4216 return updates_const_range(getUpdates().begin(), getUpdates().end()); in updates()
H A DStmtOpenMP.h1105 MutableArrayRef<Expr *> getUpdates() { in getUpdates() function
1504 ArrayRef<Expr *> updates() { return getUpdates(); } in updates()
1507 return const_cast<OMPLoopDirective *>(this)->getUpdates(); in updates()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp575 std::copy(FL.begin(), FL.end(), getUpdates().end()); in setFinals()
606 std::fill(Clause->getUpdates().end(), Clause->getUpdates().end() + VL.size(), in Create()
H A DStmtOpenMP.cpp234 llvm::copy(A, getUpdates().begin()); in setUpdates()