Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp921 OMPScanDirective *OMPScanDirective::Create(const ASTContext &C, in Create()
925 return createDirective<OMPScanDirective>(C, Clauses, in Create()
930 OMPScanDirective *OMPScanDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
933 return createEmptyDirective<OMPScanDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp1088 void StmtProfiler::VisitOMPScanDirective(const OMPScanDirective *S) { in VisitOMPScanDirective()
H A DStmtPrinter.cpp890 void StmtPrinter::VisitOMPScanDirective(OMPScanDirective *Node) { in VisitOMPScanDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td253 def OMPScanDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h5860 class OMPScanDirective final : public OMPExecutableDirective {
5868 OMPScanDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPScanDirective() function
5874 explicit OMPScanDirective() in OMPScanDirective() function
5887 static OMPScanDirective *Create(const ASTContext &C, SourceLocation StartLoc,
5897 static OMPScanDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h3109 DEF_TRAVERSE_STMT(OMPScanDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2562 void ASTStmtReader::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
3595 S = OMPScanDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2635 void ASTStmtWriter::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp289 EmitOMPScanDirective(cast<OMPScanDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp5453 void CodeGenFunction::EmitOMPScanDirective(const OMPScanDirective &S) { in EmitOMPScanDirective()
8138 if (const auto *SD = dyn_cast<OMPScanDirective>(&D)) { in EmitSimpleOMPExecutableDirective()
H A DCodeGenFunction.h3845 void EmitOMPScanDirective(const OMPScanDirective &S);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9496 TreeTransform<Derived>::TransformOMPScanDirective(OMPScanDirective *D) { in TransformOMPScanDirective()
H A DSemaOpenMP.cpp11156 return OMPScanDirective::Create(getASTContext(), StartLoc, EndLoc, Clauses); in ActOnOpenMPScanDirective()