Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DOpenMPClause.cpp945 OMPFullClause *OMPFullClause::Create(const ASTContext &C, in Create()
948 OMPFullClause *Clause = CreateEmpty(C); in Create()
954 OMPFullClause *OMPFullClause::CreateEmpty(const ASTContext &C) { in CreateEmpty()
955 return new (C) OMPFullClause(); in CreateEmpty()
1635 void OMPClausePrinter::VisitOMPFullClause(OMPFullClause *Node) { OS << "full"; } in VisitOMPFullClause()
DStmtProfile.cpp471 void OMPClauseProfiler::VisitOMPFullClause(const OMPFullClause *C) {} in VisitOMPFullClause()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOpenMPClause.h897 class OMPFullClause final : public OMPClause {
901 explicit OMPFullClause() : OMPClause(llvm::omp::OMPC_full, {}, {}) {} in OMPFullClause() function
909 static OMPFullClause *Create(const ASTContext &C, SourceLocation StartLoc,
915 static OMPFullClause *CreateEmpty(const ASTContext &C);
DRecursiveASTVisitor.h3114 bool RecursiveASTVisitor<Derived>::VisitOMPFullClause(OMPFullClause *C) {
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td71 def OMPC_Full: Clause<"full"> { let clangClass = "OMPFullClause"; }
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReader.cpp11753 C = OMPFullClause::CreateEmpty(Context); in readClause()
12070 void OMPClauseReader::VisitOMPFullClause(OMPFullClause *C) {} in VisitOMPFullClause()
DASTWriter.cpp6060 void OMPClauseWriter::VisitOMPFullClause(OMPFullClause *C) {} in VisitOMPFullClause()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp12838 const OMPFullClause *FullClause = in ActOnOpenMPUnrollDirective()
12839 OMPExecutableDirective::getSingleClause<OMPFullClause>(Clauses); in ActOnOpenMPUnrollDirective()
14650 return OMPFullClause::Create(Context, StartLoc, EndLoc); in ActOnOpenMPFullClause()
DTreeTransform.h9251 OMPClause *TreeTransform<Derived>::TransformOMPFullClause(OMPFullClause *C) { in TransformOMPFullClause()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2597 if (S.hasClausesOfKind<OMPFullClause>()) { in EmitOMPUnrollDirective()