Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp737 OMPScanDirective *OMPScanDirective::Create(const ASTContext &C, in Create()
741 return createDirective<OMPScanDirective>(C, Clauses, in Create()
746 OMPScanDirective *OMPScanDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
749 return createEmptyDirective<OMPScanDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp990 void StmtProfiler::VisitOMPScanDirective(const OMPScanDirective *S) { in VisitOMPScanDirective()
H A DStmtPrinter.cpp769 void StmtPrinter::VisitOMPScanDirective(OMPScanDirective *Node) { in VisitOMPScanDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h5044 class OMPScanDirective final : public OMPExecutableDirective {
5052 OMPScanDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPScanDirective() function
5058 explicit OMPScanDirective() in OMPScanDirective() function
5071 static OMPScanDirective *Create(const ASTContext &C, SourceLocation StartLoc,
5081 static OMPScanDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h2890 DEF_TRAVERSE_STMT(OMPScanDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td244 def OMPScanDirective : StmtNode<OMPExecutableDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2410 void ASTStmtReader::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
3288 S = OMPScanDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2377 void ASTStmtWriter::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp266 EmitOMPScanDirective(cast<OMPScanDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp4835 void CodeGenFunction::EmitOMPScanDirective(const OMPScanDirective &S) { in EmitOMPScanDirective()
7083 if (const auto *SD = dyn_cast<OMPScanDirective>(&D)) { in EmitSimpleOMPExecutableDirective()
H A DCodeGenFunction.h3463 void EmitOMPScanDirective(const OMPScanDirective &S);
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2069 void VisitOMPScanDirective(const OMPScanDirective *D);
2980 void EnqueueVisitor::VisitOMPScanDirective(const OMPScanDirective *D) { in VisitOMPScanDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8716 TreeTransform<Derived>::TransformOMPScanDirective(OMPScanDirective *D) { in TransformOMPScanDirective()
H A DSemaOpenMP.cpp10280 return OMPScanDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPScanDirective()