Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h233 class OMPClauseWithPostUpdate : public OMPClauseWithPreInit {
240 OMPClauseWithPostUpdate(const OMPClause *This) : OMPClauseWithPreInit(This) { in OMPClauseWithPostUpdate() function
254 static OMPClauseWithPostUpdate *get(OMPClause *C);
255 static const OMPClauseWithPostUpdate *get(const OMPClause *C);
3392 public OMPClauseWithPostUpdate,
3433 OMPClauseWithPostUpdate(this), LPKind(LPKind), LPKindLoc(LPKindLoc), in OMPLastprivateClause()
3443 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
3703 public OMPClauseWithPostUpdate,
3747 OMPClauseWithPostUpdate(this), Modifier(Modifier), in OMPReductionClause()
3759 OMPClauseWithPostUpdate(this) {} in OMPReductionClause()
[all …]
H A DRecursiveASTVisitor.h509 bool VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *Node);
3330 OMPClauseWithPostUpdate *Node) {
/freebsd/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.cpp445 void VistOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
455 const OMPClauseWithPostUpdate *C) { in VistOMPClauseWithPostUpdate()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp7758 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
7779 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
H A DASTReader.cpp11068 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
11457 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp4644 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) { in ActOnOpenMPRegionEnd()