Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp874 OMPCancelDirective *
875 OMPCancelDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
878 auto *Dir = createDirective<OMPCancelDirective>( in Create()
885 OMPCancelDirective *OMPCancelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
888 return createEmptyDirective<OMPCancelDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1137 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { in VisitOMPCancelDirective()
H A DStmtPrinter.cpp951 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { in VisitOMPCancelDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td265 def OMPCancelDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h3672 class OMPCancelDirective : public OMPExecutableDirective {
3681 OMPCancelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPCancelDirective() function
3687 explicit OMPCancelDirective() in OMPCancelDirective() function
3703 static OMPCancelDirective *
3712 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h3100 DEF_TRAVERSE_STMT(OMPCancelDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2627 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
3660 S = OMPCancelDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2661 void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp307 EmitOMPCancelDirective(cast<OMPCancelDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3859 void EmitOMPCancelDirective(const OMPCancelDirective &S);
H A DCGStmtOpenMP.cpp7232 void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) { in EmitOMPCancelDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9180 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
9628 TreeTransform<Derived>::TransformOMPCancelDirective(OMPCancelDirective *D) { in TransformOMPCancelDirective()
H A DSemaOpenMP.cpp13171 return OMPCancelDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses, in ActOnOpenMPCancelDirective()