Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp883 OMPScanDirective *OMPScanDirective::Create(const ASTContext &C, in Create()
887 return createDirective<OMPScanDirective>(C, Clauses, in Create()
892 OMPScanDirective *OMPScanDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
895 return createEmptyDirective<OMPScanDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1077 void StmtProfiler::VisitOMPScanDirective(const OMPScanDirective *S) { in VisitOMPScanDirective()
H A DStmtPrinter.cpp877 void StmtPrinter::VisitOMPScanDirective(OMPScanDirective *Node) { in VisitOMPScanDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td249 def OMPScanDirective : StmtNode<OMPExecutableDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5718 class OMPScanDirective final : public OMPExecutableDirective {
5726 OMPScanDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPScanDirective() function
5732 explicit OMPScanDirective() in OMPScanDirective() function
5745 static OMPScanDirective *Create(const ASTContext &C, SourceLocation StartLoc,
5755 static OMPScanDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h3039 DEF_TRAVERSE_STMT(OMPScanDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2534 void ASTStmtReader::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
3518 S = OMPScanDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2586 void ASTStmtWriter::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp279 EmitOMPScanDirective(cast<OMPScanDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3617 void EmitOMPScanDirective(const OMPScanDirective &S);
H A DCGStmtOpenMP.cpp5396 void CodeGenFunction::EmitOMPScanDirective(const OMPScanDirective &S) { in EmitOMPScanDirective()
8016 if (const auto *SD = dyn_cast<OMPScanDirective>(&D)) { in EmitSimpleOMPExecutableDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9167 TreeTransform<Derived>::TransformOMPScanDirective(OMPScanDirective *D) { in TransformOMPScanDirective()
H A DSemaOpenMP.cpp11492 return OMPScanDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPScanDirective()