Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h170 static OMPClauseWithPostUpdate *get(OMPClause *C);
2613 public OMPClauseWithPostUpdate,
2664 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
2924 public OMPClauseWithPostUpdate,
2974 OMPClauseWithPostUpdate(this) {} in OMPReductionClause()
3260 public OMPClauseWithPostUpdate,
3300 OMPClauseWithPostUpdate(this) {} in OMPTaskReductionClause()
3491 public OMPClauseWithPostUpdate,
3531 OMPClauseWithPostUpdate(this) {} in OMPInReductionClause()
3747 public OMPClauseWithPostUpdate,
[all …]
H A DRecursiveASTVisitor.h503 bool VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *Node);
3052 OMPClauseWithPostUpdate *Node) {
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp171 OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(OMPClause *C) { in get()
172 auto *Res = OMPClauseWithPostUpdate::get(const_cast<const OMPClause *>(C)); in get()
173 return Res ? const_cast<OMPClauseWithPostUpdate *>(Res) : nullptr; in get()
176 const OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(const OMPClause *C) { in get()
H A DStmtProfile.cpp421 void VistOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
431 const OMPClauseWithPostUpdate *C) { in VistOMPClauseWithPostUpdate()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp5996 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
6017 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
H A DASTReader.cpp11720 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
12028 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp4517 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) { in ActOnOpenMPRegionEnd()