Searched refs:OMPTaskgroupDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 543 OMPTaskgroupDirective *OMPTaskgroupDirective::Create(const ASTContext &C, in Create() 548 llvm::alignTo(sizeof(OMPTaskgroupDirective), llvm::alignOf<Stmt *>()); in Create() 550 OMPTaskgroupDirective *Dir = in Create() 551 new (Mem) OMPTaskgroupDirective(StartLoc, EndLoc); in Create() 556 OMPTaskgroupDirective *OMPTaskgroupDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 559 llvm::alignTo(sizeof(OMPTaskgroupDirective), llvm::alignOf<Stmt *>()); in CreateEmpty() 561 return new (Mem) OMPTaskgroupDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 625 void StmtProfiler::VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *S) { in VisitOMPTaskgroupDirective()
|
D | StmtPrinter.cpp | 1078 void StmtPrinter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *Node) { in VisitOMPTaskgroupDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1721 class OMPTaskgroupDirective : public OMPExecutableDirective { 1728 OMPTaskgroupDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskgroupDirective() function 1734 explicit OMPTaskgroupDirective() in OMPTaskgroupDirective() function 1746 static OMPTaskgroupDirective *Create(const ASTContext &C, 1755 static OMPTaskgroupDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2513 DEF_TRAVERSE_STMT(OMPTaskgroupDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 214 def OMPTaskgroupDirective : DStmt<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 233 EmitOMPTaskgroupDirective(cast<OMPTaskgroupDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2483 void EmitOMPTaskgroupDirective(const OMPTaskgroupDirective &S);
|
D | CGStmtOpenMP.cpp | 2601 const OMPTaskgroupDirective &S) { in EmitOMPTaskgroupDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2637 void ASTStmtReader::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective() 3349 S = OMPTaskgroupDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2386 void ASTStmtWriter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1954 void VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *D); 2666 const OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5941 return OMPTaskgroupDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPTaskgroupDirective()
|
D | TreeTransform.h | 7398 OMPTaskgroupDirective *D) { in TransformOMPTaskgroupDirective()
|