Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp100 OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(OMPClause *C) { in get()
101 auto *Res = OMPClauseWithPostUpdate::get(const_cast<const OMPClause *>(C)); in get()
102 return Res ? const_cast<OMPClauseWithPostUpdate *>(Res) : nullptr; in get()
105 const OMPClauseWithPostUpdate *OMPClauseWithPostUpdate::get(const OMPClause *C) { in get()
DStmtProfile.cpp273 void VistOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
283 const OMPClauseWithPostUpdate *C) { in VistOMPClauseWithPostUpdate()
/external/clang/include/clang/AST/
DOpenMPClause.h97 class OMPClauseWithPostUpdate : public OMPClauseWithPreInit {
104 OMPClauseWithPostUpdate(const OMPClause *This) in OMPClauseWithPostUpdate() function
114 static OMPClauseWithPostUpdate *get(OMPClause *C);
115 static const OMPClauseWithPostUpdate *get(const OMPClause *C);
1408 public OMPClauseWithPostUpdate,
1442 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
1452 OMPClauseWithPostUpdate(this) {} in OMPLastprivateClause()
1668 public OMPClauseWithPostUpdate,
1696 OMPClauseWithPostUpdate(this), ColonLoc(ColonLoc), in OMPReductionClause()
1707 OMPClauseWithPostUpdate(this), ColonLoc(), QualifierLoc(), NameInfo() {} in OMPReductionClause()
[all …]
DRecursiveASTVisitor.h507 bool VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *Node);
2604 OMPClauseWithPostUpdate *Node) {
/external/clang/lib/Serialization/
DASTWriterStmt.cpp1777 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
1792 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
DASTReaderStmt.cpp1770 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C);
1945 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/external/clang/tools/libclang/
DCIndex.cpp2050 void VisitOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C);
2059 const OMPClauseWithPostUpdate *C) { in VisitOMPClauseWithPostUpdate()
/external/clang/lib/Sema/
DSemaOpenMP.cpp1817 if (auto *C = OMPClauseWithPostUpdate::get(Clause)) { in ActOnOpenMPRegionEnd()