Home
last modified time | relevance | path

Searched refs:OMPClauseWithPreInit (Results 1 – 9 of 9) sorted by relevance

/external/clang/lib/AST/
DOpenMPClause.cpp32 OMPClauseWithPreInit *OMPClauseWithPreInit::get(OMPClause *C) { in get()
33 auto *Res = OMPClauseWithPreInit::get(const_cast<const OMPClause *>(C)); in get()
34 return Res ? const_cast<OMPClauseWithPreInit *>(Res) : nullptr; in get()
37 const OMPClauseWithPreInit *OMPClauseWithPreInit::get(const OMPClause *C) { in get()
DStmtProfile.cpp272 void VistOMPClauseWithPreInit(const OMPClauseWithPreInit *C);
277 const OMPClauseWithPreInit *C) { in VistOMPClauseWithPreInit()
/external/clang/include/clang/AST/
DOpenMPClause.h75 class OMPClauseWithPreInit {
82 OMPClauseWithPreInit(const OMPClause *This) : PreInit(nullptr) { in OMPClauseWithPreInit() function
91 static OMPClauseWithPreInit *get(OMPClause *C);
92 static const OMPClauseWithPreInit *get(const OMPClause *C);
97 class OMPClauseWithPostUpdate : public OMPClauseWithPreInit {
105 : OMPClauseWithPreInit(This), PostUpdate(nullptr) { in OMPClauseWithPostUpdate()
698 class OMPScheduleClause : public OMPClause, public OMPClauseWithPreInit {
801 : OMPClause(OMPC_schedule, StartLoc, EndLoc), OMPClauseWithPreInit(this), in OMPScheduleClause()
815 OMPClauseWithPreInit(this), Kind(OMPC_SCHEDULE_unknown), in OMPScheduleClause()
1279 public OMPClauseWithPreInit,
[all …]
DRecursiveASTVisitor.h506 bool VisitOMPClauseWithPreInit(OMPClauseWithPreInit *Node);
2597 OMPClauseWithPreInit *Node) {
/external/clang/lib/Serialization/
DASTWriterStmt.cpp1776 void VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C);
1788 void OMPClauseWriter::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) { in VisitOMPClauseWithPreInit()
DASTReaderStmt.cpp1769 void VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C);
1941 void OMPClauseReader::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) { in VisitOMPClauseWithPreInit()
/external/clang/tools/libclang/
DCIndex.cpp2049 void VisitOMPClauseWithPreInit(const OMPClauseWithPreInit *C);
2054 const OMPClauseWithPreInit *C) { in VisitOMPClauseWithPreInit()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp32 if (auto *CPI = OMPClauseWithPreInit::get(C)) { in emitPreInitStmt()
/external/clang/lib/Sema/
DSemaOpenMP.cpp1811 if (auto *C = OMPClauseWithPreInit::get(Clause)) { in ActOnOpenMPRegionEnd()