/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 529 OMPTaskwaitDirective *OMPTaskwaitDirective::Create(const ASTContext &C, in Create() 532 void *Mem = C.Allocate(sizeof(OMPTaskwaitDirective)); in Create() 533 OMPTaskwaitDirective *Dir = new (Mem) OMPTaskwaitDirective(StartLoc, EndLoc); in Create() 537 OMPTaskwaitDirective *OMPTaskwaitDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 539 void *Mem = C.Allocate(sizeof(OMPTaskwaitDirective)); in CreateEmpty() 540 return new (Mem) OMPTaskwaitDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 621 void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) { in VisitOMPTaskwaitDirective()
|
D | StmtPrinter.cpp | 1073 void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) { in VisitOMPTaskwaitDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 1677 class OMPTaskwaitDirective : public OMPExecutableDirective { 1684 OMPTaskwaitDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskwaitDirective() function 1690 explicit OMPTaskwaitDirective() in OMPTaskwaitDirective() function 1701 static OMPTaskwaitDirective * 1708 static OMPTaskwaitDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2510 DEF_TRAVERSE_STMT(OMPTaskwaitDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 586 OMPTaskwaitDirective *OMPTaskwaitDirective::Create(const ASTContext &C, in Create() 589 return new (C) OMPTaskwaitDirective(StartLoc, EndLoc); in Create() 592 OMPTaskwaitDirective *OMPTaskwaitDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 594 return new (C) OMPTaskwaitDirective(); in CreateEmpty()
|
D | StmtProfile.cpp | 923 void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) { in VisitOMPTaskwaitDirective()
|
D | StmtPrinter.cpp | 741 void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) { in VisitOMPTaskwaitDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 213 def OMPTaskwaitDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2162 class OMPTaskwaitDirective : public OMPExecutableDirective { 2170 OMPTaskwaitDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPTaskwaitDirective() function 2176 explicit OMPTaskwaitDirective() in OMPTaskwaitDirective() function 2188 static OMPTaskwaitDirective * 2195 static OMPTaskwaitDirective *CreateEmpty(const ASTContext &C, EmptyShell);
|
D | RecursiveASTVisitor.h | 2832 DEF_TRAVERSE_STMT(OMPTaskwaitDirective,
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 237 def OMPTaskwaitDirective : StmtNode<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 230 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2482 void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
|
D | CGStmtOpenMP.cpp | 2596 void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) { in EmitOMPTaskwaitDirective()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2375 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective() 3227 S = OMPTaskwaitDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2336 void ASTStmtWriter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2632 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective() 3345 S = OMPTaskwaitDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2380 void ASTStmtWriter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 246 EmitOMPTaskwaitDirective(cast<OMPTaskwaitDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 3406 void EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S);
|
D | CGStmtOpenMP.cpp | 4340 void CodeGenFunction::EmitOMPTaskwaitDirective(const OMPTaskwaitDirective &S) { in EmitOMPTaskwaitDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1953 void VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *D); 2661 void EnqueueVisitor::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2058 void VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *D); 2918 void EnqueueVisitor::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *D) { in VisitOMPTaskwaitDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5928 return OMPTaskwaitDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPTaskwaitDirective()
|