Searched refs:OMPMasterDirective (Results 1 – 13 of 13) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtOpenMP.cpp | 606 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create() 610 return createDirective<OMPMasterDirective>(C, std::nullopt, AssociatedStmt, in Create() 615 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 617 return createEmptyDirective<OMPMasterDirective>(C, /*NumClauses=*/0, in CreateEmpty()
|
H A D | StmtProfile.cpp | 1021 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
|
H A D | StmtPrinter.cpp | 806 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 240 def OMPMasterDirective : StmtNode<OMPExecutableDirective>;
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 2045 class OMPMasterDirective : public OMPExecutableDirective { 2053 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function 2059 explicit OMPMasterDirective() in OMPMasterDirective() function 2071 static OMPMasterDirective *Create(const ASTContext &C, 2080 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
H A D | RecursiveASTVisitor.h | 3059 DEF_TRAVERSE_STMT(OMPMasterDirective,
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 2477 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective() 3517 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 2487 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 247 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
|
H A D | CodeGenFunction.h | 3830 void EmitOMPMasterDirective(const OMPMasterDirective &S);
|
H A D | CGStmtOpenMP.cpp | 4316 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 9332 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
|
H A D | SemaOpenMP.cpp | 10784 return OMPMasterDirective::Create(getASTContext(), StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()
|