Home
last modified time | relevance | path

Searched refs:OMPTaskgroupDirective (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp543 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()
DStmtProfile.cpp625 void StmtProfiler::VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *S) { in VisitOMPTaskgroupDirective()
DStmtPrinter.cpp1078 void StmtPrinter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *Node) { in VisitOMPTaskgroupDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h1721 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);
DRecursiveASTVisitor.h2513 DEF_TRAVERSE_STMT(OMPTaskgroupDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td214 def OMPTaskgroupDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp233 EmitOMPTaskgroupDirective(cast<OMPTaskgroupDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2483 void EmitOMPTaskgroupDirective(const OMPTaskgroupDirective &S);
DCGStmtOpenMP.cpp2601 const OMPTaskgroupDirective &S) { in EmitOMPTaskgroupDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2637 void ASTStmtReader::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
3349 S = OMPTaskgroupDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp2386 void ASTStmtWriter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
/external/clang/tools/libclang/
DCIndex.cpp1954 void VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *D);
2666 const OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5941 return OMPTaskgroupDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPTaskgroupDirective()
DTreeTransform.h7398 OMPTaskgroupDirective *D) { in TransformOMPTaskgroupDirective()