Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp673 OMPScanDirective *OMPScanDirective::Create(const ASTContext &C, in Create()
677 return createDirective<OMPScanDirective>(C, Clauses, in Create()
682 OMPScanDirective *OMPScanDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
685 return createEmptyDirective<OMPScanDirective>(C, NumClauses); in CreateEmpty()
DStmtProfile.cpp941 void StmtProfiler::VisitOMPScanDirective(const OMPScanDirective *S) { in VisitOMPScanDirective()
DStmtPrinter.cpp761 void StmtPrinter::VisitOMPScanDirective(OMPScanDirective *Node) { in VisitOMPScanDirective()
/external/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h4676 class OMPScanDirective final : public OMPExecutableDirective {
4684 OMPScanDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPScanDirective() function
4690 explicit OMPScanDirective() in OMPScanDirective() function
4703 static OMPScanDirective *Create(const ASTContext &C, SourceLocation StartLoc,
4713 static OMPScanDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
DRecursiveASTVisitor.h2850 DEF_TRAVERSE_STMT(OMPScanDirective,
/external/llvm-project/clang/include/clang/Basic/
DStmtNodes.td241 def OMPScanDirective : StmtNode<OMPExecutableDirective>;
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2395 void ASTStmtReader::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
3246 S = OMPScanDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2360 void ASTStmtWriter::VisitOMPScanDirective(OMPScanDirective *D) { in VisitOMPScanDirective()
/external/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp258 EmitOMPScanDirective(cast<OMPScanDirective>(*S)); in EmitStmt()
DCGStmtOpenMP.cpp4413 void CodeGenFunction::EmitOMPScanDirective(const OMPScanDirective &S) { in EmitOMPScanDirective()
6650 if (const auto *SD = dyn_cast<OMPScanDirective>(&D)) { in EmitSimpleOMPExecutableDirective()
DCodeGenFunction.h3410 void EmitOMPScanDirective(const OMPScanDirective &S);
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2065 void VisitOMPScanDirective(const OMPScanDirective *D);
2937 void EnqueueVisitor::VisitOMPScanDirective(const OMPScanDirective *D) { in VisitOMPScanDirective()
/external/llvm-project/clang/lib/Sema/
DTreeTransform.h8601 TreeTransform<Derived>::TransformOMPScanDirective(OMPScanDirective *D) { in TransformOMPScanDirective()
DSemaOpenMP.cpp9489 return OMPScanDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPScanDirective()