Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp402 OMPSectionsDirective *OMPSectionsDirective::Create( in Create()
406 auto *Dir = createDirective<OMPSectionsDirective>(C, Clauses, AssociatedStmt, in Create()
414 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
417 return createEmptyDirective<OMPSectionsDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp919 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
H A DStmtPrinter.cpp681 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h1685 class OMPSectionsDirective : public OMPExecutableDirective {
1697 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionsDirective() function
1703 explicit OMPSectionsDirective() in OMPSectionsDirective() function
1726 static OMPSectionsDirective *
1737 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
1745 return const_cast<OMPSectionsDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
H A DRecursiveASTVisitor.h2834 DEF_TRAVERSE_STMT(OMPSectionsDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td228 def OMPSectionsDirective : StmtNode<OMPExecutableDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2323 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
3207 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2225 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp218 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp1316 TaskRedRef = cast<OMPSectionsDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
3777 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections()
3795 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
H A DCodeGenFunction.h3446 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2050 void VisitOMPSectionsDirective(const OMPSectionsDirective *D);
2907 void EnqueueVisitor::VisitOMPSectionsDirective(const OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8541 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
H A DSemaOpenMP.cpp9775 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()