Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp457 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create()
461 return createDirective<OMPMasterDirective>(C, llvm::None, AssociatedStmt, in Create()
466 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
468 return createEmptyDirective<OMPMasterDirective>(C, /*NumClauses=*/0, in CreateEmpty()
H A DStmtProfile.cpp931 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
H A DStmtPrinter.cpp696 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h1875 class OMPMasterDirective : public OMPExecutableDirective {
1883 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function
1889 explicit OMPMasterDirective() in OMPMasterDirective() function
1901 static OMPMasterDirective *Create(const ASTContext &C,
1910 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h2843 DEF_TRAVERSE_STMT(OMPMasterDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td231 def OMPMasterDirective : StmtNode<OMPExecutableDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2340 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
3221 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2245 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp227 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3449 void EmitOMPMasterDirective(const OMPMasterDirective &S);
H A DCGStmtOpenMP.cpp3951 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2053 void VisitOMPMasterDirective(const OMPMasterDirective *D);
2919 void EnqueueVisitor::VisitOMPMasterDirective(const OMPMasterDirective *D) { in VisitOMPMasterDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8574 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
H A DSemaOpenMP.cpp9890 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()