Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4661 MutableArrayRef<Expr *> getUpdates() { in getUpdates() function
4664 ArrayRef<const Expr *> getUpdates() const { in getUpdates() function
4670 return {getUpdates().end(), varlist_size()}; in getFinals()
4673 return {getUpdates().end(), varlist_size()}; in getFinals()
4806 return updates_range(getUpdates().begin(), getUpdates().end()); in updates()
4810 return updates_const_range(getUpdates().begin(), getUpdates().end()); in updates()
H A DStmtOpenMP.h1091 MutableArrayRef<Expr *> getUpdates() { in getUpdates() function
1490 ArrayRef<Expr *> updates() { return getUpdates(); } in updates()
1493 return const_cast<OMPLoopDirective *>(this)->getUpdates(); in updates()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp575 llvm::copy(FL, 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()