/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/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 597 OMPTaskgroupDirective *OMPTaskgroupDirective::Create( in Create() 600 auto *Dir = createDirective<OMPTaskgroupDirective>( in Create() 606 OMPTaskgroupDirective *OMPTaskgroupDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 609 return createEmptyDirective<OMPTaskgroupDirective>( in CreateEmpty()
|
D | StmtProfile.cpp | 927 void StmtProfiler::VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *S) { in VisitOMPTaskgroupDirective()
|
D | StmtPrinter.cpp | 746 void StmtPrinter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *Node) { in VisitOMPTaskgroupDirective()
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2208 class OMPTaskgroupDirective : public OMPExecutableDirective { 2216 OMPTaskgroupDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskgroupDirective() function 2222 explicit OMPTaskgroupDirective() in OMPTaskgroupDirective() function 2240 static OMPTaskgroupDirective * 2250 static OMPTaskgroupDirective *CreateEmpty(const ASTContext &C, 2256 return const_cast<OMPTaskgroupDirective *>(this)->getReductionRef(); in getReductionRef()
|
D | RecursiveASTVisitor.h | 2835 DEF_TRAVERSE_STMT(OMPTaskgroupDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 214 def OMPTaskgroupDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 238 def OMPTaskgroupDirective : StmtNode<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/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2380 void ASTStmtReader::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective() 3231 S = OMPTaskgroupDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2342 void ASTStmtWriter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
|
/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/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 249 EmitOMPTaskgroupDirective(cast<OMPTaskgroupDirective>(*S)); in EmitStmt()
|
D | CGStmtOpenMP.cpp | 237 if (const auto *TG = dyn_cast<OMPTaskgroupDirective>(&S)) { in OMPSimdLexicalScope() 4345 const OMPTaskgroupDirective &S) { in EmitOMPTaskgroupDirective()
|
D | CodeGenFunction.h | 3407 void EmitOMPTaskgroupDirective(const OMPTaskgroupDirective &S);
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1954 void VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *D); 2666 const OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2059 void VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *D); 2923 const OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5941 return OMPTaskgroupDirective::Create(Context, StartLoc, EndLoc, AStmt); in ActOnOpenMPTaskgroupDirective()
|