Searched refs:OMPMasterDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 302 OMPMasterDirective *OMPMasterDirective::Create(const ASTContext &C, in Create() 307 llvm::alignTo(sizeof(OMPMasterDirective), llvm::alignOf<Stmt *>()); in Create() 309 OMPMasterDirective *Dir = new (Mem) OMPMasterDirective(StartLoc, EndLoc); in Create() 314 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 317 llvm::alignTo(sizeof(OMPMasterDirective), llvm::alignOf<Stmt *>()); in CreateEmpty() 319 return new (Mem) OMPMasterDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 585 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
|
D | StmtPrinter.cpp | 1025 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1181 class OMPMasterDirective : public OMPExecutableDirective { 1188 OMPMasterDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPMasterDirective() function 1194 explicit OMPMasterDirective() in OMPMasterDirective() function 1206 static OMPMasterDirective *Create(const ASTContext &C, 1215 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2484 DEF_TRAVERSE_STMT(OMPMasterDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 205 def OMPMasterDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 206 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2474 void EmitOMPMasterDirective(const OMPMasterDirective &S);
|
D | CGStmtOpenMP.cpp | 2350 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2582 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective() 3302 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2267 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1945 void VisitOMPMasterDirective(const OMPMasterDirective *D); 2624 void EnqueueVisitor::VisitOMPMasterDirective(const OMPMasterDirective *D) { in VisitOMPMasterDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5692 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()
|
D | TreeTransform.h | 7300 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
|