Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp690 OMPCancelDirective *
691 OMPCancelDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
694 auto *Dir = createDirective<OMPCancelDirective>( in Create()
701 OMPCancelDirective *OMPCancelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
704 return createEmptyDirective<OMPCancelDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1039 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { in VisitOMPCancelDirective()
H A DStmtPrinter.cpp830 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { in VisitOMPCancelDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h3355 class OMPCancelDirective : public OMPExecutableDirective {
3364 OMPCancelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPCancelDirective() function
3370 explicit OMPCancelDirective() in OMPCancelDirective() function
3386 static OMPCancelDirective *
3395 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2881 DEF_TRAVERSE_STMT(OMPCancelDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td256 def OMPCancelDirective : StmtNode<OMPExecutableDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2474 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
3353 S = OMPCancelDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2403 void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) { in VisitOMPCancelDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp284 EmitOMPCancelDirective(cast<OMPCancelDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3477 void EmitOMPCancelDirective(const OMPCancelDirective &S);
H A DCGStmtOpenMP.cpp6391 void CodeGenFunction::EmitOMPCancelDirective(const OMPCancelDirective &S) { in EmitOMPCancelDirective()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2066 void VisitOMPCancelDirective(const OMPCancelDirective *D);
3030 void EnqueueVisitor::VisitOMPCancelDirective(const OMPCancelDirective *D) { in VisitOMPCancelDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8476 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion(); in TransformOMPExecutableDirective()
8848 TreeTransform<Derived>::TransformOMPCancelDirective(OMPCancelDirective *D) { in TransformOMPCancelDirective()
H A DSemaOpenMP.cpp11444 return OMPCancelDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPCancelDirective()