Home
last modified time | relevance | path

Searched refs:OMPClauseWithPostUpdate (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h254 static OMPClauseWithPostUpdate *get(OMPClause *C);
2855 public OMPClauseWithPostUpdate,
2906 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
3166 public OMPClauseWithPostUpdate,
3216 OMPClauseWithPostUpdate(this) {} in OMPReductionClause()
3502 public OMPClauseWithPostUpdate,
3542 OMPClauseWithPostUpdate(this) {} in OMPTaskReductionClause()
3733 public OMPClauseWithPostUpdate,
3773 OMPClauseWithPostUpdate(this) {} in OMPInReductionClause()
3989 public OMPClauseWithPostUpdate,
[all …]
H A DRecursiveASTVisitor.h505 bool VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *Node);
3202 OMPClauseWithPostUpdate *Node) {
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp183 OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(OMPClause *C) { in get()
184 auto *Res = OMPClauseWithPostUpdate::get(const_cast<const OMPClause *>(C)); in get()
185 return Res ? const_cast<OMPClauseWithPostUpdate *>(Res) : nullptr; in get()
188 const OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(const OMPClause *C) { in get()
H A DStmtProfile.cpp441 void VistOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
451 const OMPClauseWithPostUpdate *C) { in VistOMPClauseWithPostUpdate()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6501 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
6522 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
H A DASTReader.cpp10240 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
10593 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp4864 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) { in ActOnOpenMPRegionEnd()