Searched refs:OMPCancelDirective (Results 1 – 14 of 14) sorted by relevance
/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/clang/include/clang/Basic/ |
D | StmtNodes.td | 227 def OMPCancelDirective : DStmt<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/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/clang/tools/libclang/ |
D | CIndex.cpp | 1957 void VisitOMPCancelDirective(const OMPCancelDirective *D); 2720 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()
|
D | SemaOpenMP.cpp | 6957 return OMPCancelDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPCancelDirective()
|