Home
last modified time | relevance | path

Searched refs:OMPPartialClause (Results 1 – 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DOpenMPClause.cpp958 OMPPartialClause *OMPPartialClause::Create(const ASTContext &C, in Create()
963 OMPPartialClause *Clause = CreateEmpty(C); in Create()
971 OMPPartialClause *OMPPartialClause::CreateEmpty(const ASTContext &C) { in CreateEmpty()
972 return new (C) OMPPartialClause(); in CreateEmpty()
1637 void OMPClausePrinter::VisitOMPPartialClause(OMPPartialClause *Node) { in VisitOMPPartialClause()
DStmtProfile.cpp473 void OMPClauseProfiler::VisitOMPPartialClause(const OMPPartialClause *C) { in VisitOMPPartialClause()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOpenMPClause.h941 class OMPPartialClause final : public OMPClause {
951 explicit OMPPartialClause() : OMPClause(llvm::omp::OMPC_partial, {}, {}) {} in OMPPartialClause() function
967 static OMPPartialClause *Create(const ASTContext &C, SourceLocation StartLoc,
974 static OMPPartialClause *CreateEmpty(const ASTContext &C);
DRecursiveASTVisitor.h3119 bool RecursiveASTVisitor<Derived>::VisitOMPPartialClause(OMPPartialClause *C) {
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td72 def OMPC_Partial: Clause<"partial"> { let clangClass = "OMPPartialClause"; }
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReader.cpp11756 C = OMPPartialClause::CreateEmpty(Context); in readClause()
12072 void OMPClauseReader::VisitOMPPartialClause(OMPPartialClause *C) { in VisitOMPPartialClause()
DASTWriter.cpp6062 void OMPClauseWriter::VisitOMPPartialClause(OMPPartialClause *C) { in VisitOMPPartialClause()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp12840 const OMPPartialClause *PartialClause = in ActOnOpenMPUnrollDirective()
12841 OMPExecutableDirective::getSingleClause<OMPPartialClause>(Clauses); in ActOnOpenMPUnrollDirective()
14667 return OMPPartialClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPPartialClause()
DTreeTransform.h9259 TreeTransform<Derived>::TransformOMPPartialClause(OMPPartialClause *C) { in TransformOMPPartialClause()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2599 } else if (auto *PartialClause = S.getSingleClause<OMPPartialClause>()) { in EmitOMPUnrollDirective()