Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp849 OMPScanDirective *OMPScanDirective::Create(const ASTContext &C, in Create()
853 return createDirective<OMPScanDirective>(C, Clauses, in Create()
858 OMPScanDirective *OMPScanDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
861 return createEmptyDirective<OMPScanDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1031 void StmtProfiler::VisitOMPScanDirective(const OMPScanDirective *S) { in VisitOMPScanDirective()
H A DStmtPrinter.cpp861 void StmtPrinter::VisitOMPScanDirective(OMPScanDirective *Node) { in VisitOMPScanDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td248 def OMPScanDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h5648 class OMPScanDirective final : public OMPExecutableDirective {
5656 OMPScanDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPScanDirective() function
5662 explicit OMPScanDirective() in OMPScanDirective() function
5675 static OMPScanDirective *Create(const ASTContext &C, SourceLocation StartLoc,
5685 static OMPScanDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h3030 DEF_TRAVERSE_STMT(OMPScanDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2430 void ASTStmtReader::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
3378 S = OMPScanDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2413 void ASTStmtWriter::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp273 EmitOMPScanDirective(cast<OMPScanDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3527 void EmitOMPScanDirective(const OMPScanDirective &S);
H A DCGStmtOpenMP.cpp5298 void CodeGenFunction::EmitOMPScanDirective(const OMPScanDirective &S) { in EmitOMPScanDirective()
7806 if (const auto *SD = dyn_cast<OMPScanDirective>(&D)) { in EmitSimpleOMPExecutableDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2167 void VisitOMPScanDirective(const OMPScanDirective *D);
3126 void EnqueueVisitor::VisitOMPScanDirective(const OMPScanDirective *D) { in VisitOMPScanDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8876 TreeTransform<Derived>::TransformOMPScanDirective(OMPScanDirective *D) { in TransformOMPScanDirective()
H A DSemaOpenMP.cpp11128 return OMPScanDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPScanDirective()