Searched refs:OMPMasterDirective (Results 1 – 15 of 15) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 982 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);
|
D | DataRecursiveASTVisitor.h | 2330 DEF_TRAVERSE_STMT(OMPMasterDirective,
|
D | RecursiveASTVisitor.h | 2360 DEF_TRAVERSE_STMT(OMPMasterDirective,
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1825 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()
|
D | StmtProfile.cpp | 469 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { in VisitOMPMasterDirective()
|
D | StmtPrinter.cpp | 859 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { in VisitOMPMasterDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 191 def OMPMasterDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1258 void CodeGenFunction::EmitOMPMasterDirective(const OMPMasterDirective &S) { in EmitOMPMasterDirective()
|
D | CGStmt.cpp | 199 EmitOMPMasterDirective(cast<OMPMasterDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2127 void EmitOMPMasterDirective(const OMPMasterDirective &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2133 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective() 2744 S = OMPMasterDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1985 void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) { in VisitOMPMasterDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1873 void VisitOMPMasterDirective(const OMPMasterDirective *D); 2439 void EnqueueVisitor::VisitOMPMasterDirective(const OMPMasterDirective *D) { in VisitOMPMasterDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 3138 return OMPMasterDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPMasterDirective()
|
D | TreeTransform.h | 6782 TreeTransform<Derived>::TransformOMPMasterDirective(OMPMasterDirective *D) { in TransformOMPMasterDirective()
|