Home
last modified time | relevance | path

Searched refs:OMPSectionsDirective (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp229 OMPSectionsDirective *OMPSectionsDirective::Create( in Create()
233 llvm::alignTo(sizeof(OMPSectionsDirective), llvm::alignOf<OMPClause *>()); in Create()
236 OMPSectionsDirective *Dir = in Create()
237 new (Mem) OMPSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create()
244 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
248 llvm::alignTo(sizeof(OMPSectionsDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
251 return new (Mem) OMPSectionsDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp573 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
DStmtPrinter.cpp1010 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h996 class OMPSectionsDirective : public OMPExecutableDirective {
1008 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSectionsDirective() function
1018 explicit OMPSectionsDirective(unsigned NumClauses) in OMPSectionsDirective() function
1037 static OMPSectionsDirective *
1047 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2475 DEF_TRAVERSE_STMT(OMPSectionsDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td202 def OMPSectionsDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp197 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
DCGStmtOpenMP.cpp2271 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections()
2288 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
DCodeGenFunction.h2471 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2561 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
3288 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2245 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/external/clang/tools/libclang/
DCIndex.cpp1942 void VisitOMPSectionsDirective(const OMPSectionsDirective *D);
2612 void EnqueueVisitor::VisitOMPSectionsDirective(const OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5632 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()
DTreeTransform.h7267 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()