Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/AST/
H A DStmtOpenMP.cpp817 OMPCancelDirective *
818 OMPCancelDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
821 auto *Dir = createDirective<OMPCancelDirective>( in Create()
828 OMPCancelDirective *OMPCancelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
831 return createEmptyDirective<OMPCancelDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1098 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { in VisitOMPCancelDirective()
H A DStmtPrinter.cpp928 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { in VisitOMPCancelDirective()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td261 def OMPCancelDirective : StmtNode<OMPExecutableDirective>;
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DStmtOpenMP.h3600 class OMPCancelDirective : public OMPExecutableDirective {
3609 OMPCancelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPCancelDirective() function
3615 explicit OMPCancelDirective() in OMPCancelDirective() function
3631 static OMPCancelDirective *
3640 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3019 DEF_TRAVERSE_STMT(OMPCancelDirective,
/openbsd/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp2542 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
3495 S = OMPCancelDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2480 void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp295 EmitOMPCancelDirective(cast<OMPCancelDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3544 void EmitOMPCancelDirective(const OMPCancelDirective &S);
H A DCGStmtOpenMP.cpp7086 void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) { in EmitOMPCancelDirective()
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2172 void VisitOMPCancelDirective(const OMPCancelDirective *D);
3202 void EnqueueVisitor::VisitOMPCancelDirective(const OMPCancelDirective *D) { in VisitOMPCancelDirective()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h8715 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
9129 TreeTransform<Derived>::TransformOMPCancelDirective(OMPCancelDirective *D) { in TransformOMPCancelDirective()
H A DSemaOpenMP.cpp13318 return OMPCancelDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPCancelDirective()