Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h957 class OMPMasterDirective : public OMPExecutableDirective {
964 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function
970 explicit OMPMasterDirective() in OMPMasterDirective() function
982 static OMPMasterDirective *Create(const ASTContext &C,
991 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DDataRecursiveASTVisitor.h2328 DEF_TRAVERSE_STMT(OMPMasterDirective,
H A DRecursiveASTVisitor.h2350 DEF_TRAVERSE_STMT(OMPMasterDirective,
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DStmt.cpp1687 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create()
1691 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPMasterDirective), in Create()
1694 OMPMasterDirective *Dir = new (Mem) OMPMasterDirective(StartLoc, EndLoc); in Create()
1699 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1701 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPMasterDirective), in CreateEmpty()
1704 return new (Mem) OMPMasterDirective(); in CreateEmpty()
H A DStmtProfile.cpp423 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
H A DStmtPrinter.cpp859 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td191 def OMPMasterDirective : DStmt<OMPExecutableDirective>;
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp626 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
H A DCGStmt.cpp201 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h2015 void EmitOMPMasterDirective(const OMPMasterDirective &S);
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2068 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
2675 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1947 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp1874 void VisitOMPMasterDirective(const OMPMasterDirective *D);
2378 void EnqueueVisitor::VisitOMPMasterDirective(const OMPMasterDirective *D) { in VisitOMPMasterDirective()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp3068 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()
H A DTreeTransform.h6750 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()