Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h982 class OMPMasterDirective : public OMPExecutableDirective {
989 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function
995 explicit OMPMasterDirective() in OMPMasterDirective() function
1007 static OMPMasterDirective *Create(const ASTContext &C,
1016 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
DDataRecursiveASTVisitor.h2330 DEF_TRAVERSE_STMT(OMPMasterDirective,
DRecursiveASTVisitor.h2360 DEF_TRAVERSE_STMT(OMPMasterDirective,
/external/clang/lib/AST/
DStmt.cpp1825 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create()
1829 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPMasterDirective), in Create()
1832 OMPMasterDirective *Dir = new (Mem) OMPMasterDirective(StartLoc, EndLoc); in Create()
1837 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1839 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPMasterDirective), in CreateEmpty()
1842 return new (Mem) OMPMasterDirective(); in CreateEmpty()
DStmtProfile.cpp469 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
DStmtPrinter.cpp859 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td191 def OMPMasterDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1258 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
DCGStmt.cpp199 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2127 void EmitOMPMasterDirective(const OMPMasterDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2133 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
2744 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1985 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
/external/clang/tools/libclang/
DCIndex.cpp1873 void VisitOMPMasterDirective(const OMPMasterDirective *D);
2439 void EnqueueVisitor::VisitOMPMasterDirective(const OMPMasterDirective *D) { in VisitOMPMasterDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3138 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()
DTreeTransform.h6782 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()