Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp974 OMPFullClause *OMPFullClause::Create(const ASTContext &C, in Create()
977 OMPFullClause *Clause = CreateEmpty(C); in Create()
983 OMPFullClause *OMPFullClause::CreateEmpty(const ASTContext &C) { in CreateEmpty()
984 return new (C) OMPFullClause(); in CreateEmpty()
1777 void OMPClausePrinter::VisitOMPFullClause(OMPFullClause *Node) { OS << "full"; } in VisitOMPFullClause()
H A DStmtProfile.cpp496 void OMPClauseProfiler::VisitOMPFullClause(const OMPFullClause *C) {} in VisitOMPFullClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h879 class OMPFullClause final : public OMPNoChildClause<llvm::omp::OMPC_full> {
883 explicit OMPFullClause() : OMPNoChildClause() {} in OMPFullClause() function
891 static OMPFullClause *Create(const ASTContext &C, SourceLocation StartLoc,
897 static OMPFullClause *CreateEmpty(const ASTContext &C);
H A DRecursiveASTVisitor.h3340 bool RecursiveASTVisitor<Derived>::VisitOMPFullClause(OMPFullClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td178 let clangClass = "OMPFullClause";
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp2801 if (S.hasClausesOfKind<OMPFullClause>()) { in EmitOMPUnrollDirective()
2831 if (S.hasClausesOfKind<OMPFullClause>()) { in EmitOMPUnrollDirective()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10414 C = OMPFullClause::CreateEmpty(Context); in readClause()
10779 void OMPClauseReader::VisitOMPFullClause(OMPFullClause *C) {} in VisitOMPFullClause()
H A DASTWriter.cpp7144 void OMPClauseWriter::VisitOMPFullClause(OMPFullClause *C) {} in VisitOMPFullClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14411 const OMPFullClause *FullClause = in ActOnOpenMPUnrollDirective()
14412 OMPExecutableDirective::getSingleClause<OMPFullClause>(Clauses); in ActOnOpenMPUnrollDirective()
16034 return OMPFullClause::Create(getASTContext(), StartLoc, EndLoc); in ActOnOpenMPFullClause()
H A DTreeTransform.h10098 OMPClause *TreeTransform<Derived>::TransformOMPFullClause(OMPFullClause *C) { in TransformOMPFullClause()