Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
2772 public OMPClauseWithPostUpdate,
2813 OMPClauseWithPostUpdate(this), LPKind(LPKind), LPKindLoc(LPKindLoc), in OMPLastprivateClause()
2823 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
3083 public OMPClauseWithPostUpdate,
3122 OMPClauseWithPostUpdate(this), Modifier(Modifier), in OMPReductionClause()
3133 OMPClauseWithPostUpdate(this) {} in OMPReductionClause()
[all …]
H A DRecursiveASTVisitor.h501 bool VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *Node);
3191 OMPClauseWithPostUpdate *Node) {
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DOpenMPClause.cpp181 OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(OMPClause *C) { in get()
182 auto *Res = OMPClauseWithPostUpdate::get(const_cast<const OMPClause *>(C)); in get()
183 return Res ? const_cast<OMPClauseWithPostUpdate *>(Res) : nullptr; in get()
186 const OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(const OMPClause *C) { in get()
H A DStmtProfile.cpp425 void VistOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
435 const OMPClauseWithPostUpdate *C) { in VistOMPClauseWithPostUpdate()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp6363 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
6384 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
H A DASTReader.cpp9961 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
10299 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2298 void VisitOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
2307 const OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp4849 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) { in ActOnOpenMPRegionEnd()