Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h171 static OMPClauseWithPostUpdate *get(OMPClause *C);
2730 public OMPClauseWithPostUpdate,
2781 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
3041 public OMPClauseWithPostUpdate,
3091 OMPClauseWithPostUpdate(this) {} in OMPReductionClause()
3377 public OMPClauseWithPostUpdate,
3417 OMPClauseWithPostUpdate(this) {} in OMPTaskReductionClause()
3608 public OMPClauseWithPostUpdate,
3648 OMPClauseWithPostUpdate(this) {} in OMPInReductionClause()
3864 public OMPClauseWithPostUpdate,
[all …]
H A DRecursiveASTVisitor.h515 bool VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *Node);
3189 OMPClauseWithPostUpdate *Node) {
/llvm-project-15.0.7/clang/lib/AST/
H A DOpenMPClause.cpp175 OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(OMPClause *C) { in get()
176 auto *Res = OMPClauseWithPostUpdate::get(const_cast<const OMPClause *>(C)); in get()
177 return Res ? const_cast<OMPClauseWithPostUpdate *>(Res) : nullptr; in get()
180 const OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(const OMPClause *C) { in get()
H A DStmtProfile.cpp425 void VistOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
435 const OMPClauseWithPostUpdate *C) { in VistOMPClauseWithPostUpdate()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp6191 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
6212 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
H A DASTReader.cpp11503 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
11829 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2290 void VisitOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
2299 const OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp4793 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) { in ActOnOpenMPRegionEnd()