Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DOpenMPClause.h149 class OMPClauseWithPostUpdate : public OMPClauseWithPreInit {
156 OMPClauseWithPostUpdate(const OMPClause *This) : OMPClauseWithPreInit(This) { in OMPClauseWithPostUpdate() function
170 static OMPClauseWithPostUpdate *get(OMPClause *C);
171 static const OMPClauseWithPostUpdate *get(const OMPClause *C);
2505 public OMPClauseWithPostUpdate,
2546 OMPClauseWithPostUpdate(this), LPKind(LPKind), LPKindLoc(LPKindLoc), in OMPLastprivateClause()
2556 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
2816 public OMPClauseWithPostUpdate,
2855 OMPClauseWithPostUpdate(this), Modifier(Modifier), in OMPReductionClause()
2866 OMPClauseWithPostUpdate(this) {} in OMPReductionClause()
[all …]
H A DRecursiveASTVisitor.h505 bool VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *Node);
3023 OMPClauseWithPostUpdate *Node) {
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp5996 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
6017 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
H A DASTReader.cpp11691 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
11993 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2185 void VisitOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
2194 const OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp4511 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) { in ActOnOpenMPRegionEnd()