Home
last modified time | relevance | path

Searched refs:OMPCancelDirective (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp802 OMPCancelDirective *
803 OMPCancelDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
806 auto *Dir = createDirective<OMPCancelDirective>( in Create()
813 OMPCancelDirective *OMPCancelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
816 return createEmptyDirective<OMPCancelDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1080 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { in VisitOMPCancelDirective()
H A DStmtPrinter.cpp922 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { in VisitOMPCancelDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td260 def OMPCancelDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h3599 class OMPCancelDirective : public OMPExecutableDirective {
3608 OMPCancelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPCancelDirective() function
3614 explicit OMPCancelDirective() in OMPCancelDirective() function
3630 static OMPCancelDirective *
3639 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3021 DEF_TRAVERSE_STMT(OMPCancelDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2495 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
3443 S = OMPCancelDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2439 void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp291 EmitOMPCancelDirective(cast<OMPCancelDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3541 void EmitOMPCancelDirective(const OMPCancelDirective &S);
H A DCGStmtOpenMP.cpp7110 void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) { in EmitOMPCancelDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2164 void VisitOMPCancelDirective(const OMPCancelDirective *D);
3176 void EnqueueVisitor::VisitOMPCancelDirective(const OMPCancelDirective *D) { in VisitOMPCancelDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8605 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
9008 TreeTransform<Derived>::TransformOMPCancelDirective(OMPCancelDirective *D) { in TransformOMPCancelDirective()
H A DSemaOpenMP.cpp13178 return OMPCancelDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPCancelDirective()