/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 584 OMPCancelDirective * 585 OMPCancelDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 588 unsigned Size = llvm::alignTo(sizeof(OMPCancelDirective) + in Create() 592 OMPCancelDirective *Dir = in Create() 593 new (Mem) OMPCancelDirective(StartLoc, EndLoc, Clauses.size()); in Create() 599 OMPCancelDirective *OMPCancelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 602 unsigned Size = llvm::alignTo(sizeof(OMPCancelDirective) + in CreateEmpty() 606 return new (Mem) OMPCancelDirective(NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 678 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { in VisitOMPCancelDirective()
|
D | StmtPrinter.cpp | 1144 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { in VisitOMPCancelDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 2504 class OMPCancelDirective : public OMPExecutableDirective { 2513 OMPCancelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPCancelDirective() function 2522 explicit OMPCancelDirective(unsigned NumClauses) in OMPCancelDirective() function 2540 static OMPCancelDirective * 2549 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2519 DEF_TRAVERSE_STMT(OMPCancelDirective,
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 626 OMPCancelDirective * 627 OMPCancelDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 630 auto *Dir = createDirective<OMPCancelDirective>( in Create() 637 OMPCancelDirective *OMPCancelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() 640 return createEmptyDirective<OMPCancelDirective>(C, NumClauses); in CreateEmpty()
|
D | StmtProfile.cpp | 990 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { in VisitOMPCancelDirective()
|
D | StmtPrinter.cpp | 822 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { in VisitOMPCancelDirective()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 227 def OMPCancelDirective : DStmt<OMPExecutableDirective>;
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 3062 class OMPCancelDirective : public OMPExecutableDirective { 3071 OMPCancelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPCancelDirective() function 3077 explicit OMPCancelDirective() in OMPCancelDirective() function 3093 static OMPCancelDirective * 3102 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
|
D | RecursiveASTVisitor.h | 2841 DEF_TRAVERSE_STMT(OMPCancelDirective,
|
/external/llvm-project/clang/include/clang/Basic/ |
D | StmtNodes.td | 253 def OMPCancelDirective : StmtNode<OMPExecutableDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 254 EmitOMPCancelDirective(cast<OMPCancelDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2498 void EmitOMPCancelDirective(const OMPCancelDirective &S);
|
D | CGStmtOpenMP.cpp | 3362 void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) { in EmitOMPCancelDirective()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2459 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective() 3311 S = OMPCancelDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2386 void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2723 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective() 3415 S = OMPCancelDirective::CreateEmpty( in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2421 void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 276 EmitOMPCancelDirective(cast<OMPCancelDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 3424 void EmitOMPCancelDirective(const OMPCancelDirective &S);
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1957 void VisitOMPCancelDirective(const OMPCancelDirective *D); 2720 void EnqueueVisitor::VisitOMPCancelDirective(const OMPCancelDirective *D) { in VisitOMPCancelDirective()
|
/external/llvm-project/clang/tools/libclang/ |
D | CIndex.cpp | 2062 void VisitOMPCancelDirective(const OMPCancelDirective *D); 2987 void EnqueueVisitor::VisitOMPCancelDirective(const OMPCancelDirective *D) { in VisitOMPCancelDirective()
|
/external/clang/lib/Sema/ |
D | TreeTransform.h | 7213 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 7541 TreeTransform<Derived>::TransformOMPCancelDirective(OMPCancelDirective *D) { in TransformOMPCancelDirective()
|
/external/llvm-project/clang/lib/Sema/ |
D | TreeTransform.h | 8372 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective() 8733 TreeTransform<Derived>::TransformOMPCancelDirective(OMPCancelDirective *D) { in TransformOMPCancelDirective()
|