/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 500 OMPTaskyieldDirective *OMPTaskyieldDirective::Create(const ASTContext &C, in Create() 503 void *Mem = C.Allocate(sizeof(OMPTaskyieldDirective)); in Create() 504 OMPTaskyieldDirective *Dir = in Create() 505 new (Mem) OMPTaskyieldDirective(StartLoc, EndLoc); in Create() 509 OMPTaskyieldDirective *OMPTaskyieldDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 511 void *Mem = C.Allocate(sizeof(OMPTaskyieldDirective)); in CreateEmpty() 512 return new (Mem) OMPTaskyieldDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 613 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
|
D | StmtPrinter.cpp | 1063 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1589 class OMPTaskyieldDirective : public OMPExecutableDirective { 1596 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function 1602 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function 1613 static OMPTaskyieldDirective * 1620 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2504 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 564 OMPTaskyieldDirective *OMPTaskyieldDirective::Create(const ASTContext &C, in Create() 567 return new (C) OMPTaskyieldDirective(StartLoc, EndLoc); in Create() 570 OMPTaskyieldDirective *OMPTaskyieldDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 572 return new (C) OMPTaskyieldDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 915 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { in VisitOMPTaskyieldDirective()
|
D | StmtPrinter.cpp | 731 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { in VisitOMPTaskyieldDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 211 def OMPTaskyieldDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2070 class OMPTaskyieldDirective : public OMPExecutableDirective { 2078 OMPTaskyieldDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskyieldDirective() function 2084 explicit OMPTaskyieldDirective() in OMPTaskyieldDirective() function 2096 static OMPTaskyieldDirective * 2103 static OMPTaskyieldDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2826 DEF_TRAVERSE_STMT(OMPTaskyieldDirective,
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 235 def OMPTaskyieldDirective : StmtNode<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 224 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2480 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
|
D | CGStmtOpenMP.cpp | 2588 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2365 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective() 3219 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2324 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2622 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective() 3337 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2368 void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 240 EmitOMPTaskyieldDirective(cast<OMPTaskyieldDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 3404 void EmitOMPTaskyieldDirective(const OMPTaskyieldDirective &S);
|
D | CGStmtOpenMP.cpp | 4332 const OMPTaskyieldDirective &S) { in EmitOMPTaskyieldDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1951 void VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D); 2653 EnqueueVisitor::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2056 void VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *D); 2910 const OMPTaskyieldDirective *D) { in VisitOMPTaskyieldDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5918 return OMPTaskyieldDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskyieldDirective()
|