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.h4107 MutableArrayRef<Expr *> getUpdates() { in getUpdates() function
4110 ArrayRef<const Expr *> getUpdates() const { in getUpdates() function
4116 return MutableArrayRef<Expr *>(getUpdates().end(), varlist_size()); in getFinals()
4119 return llvm::ArrayRef(getUpdates().end(), varlist_size()); in getFinals()
4252 return updates_range(getUpdates().begin(), getUpdates().end()); in updates()
4256 return updates_const_range(getUpdates().begin(), getUpdates().end()); in updates()
H A DStmtOpenMP.h1106 MutableArrayRef<Expr *> getUpdates() { in getUpdates() function
1505 ArrayRef<Expr *> updates() { return getUpdates(); } in updates()
1508 return const_cast<OMPLoopDirective *>(this)->getUpdates(); in updates()
/freebsd/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()