Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1526 OMPInclusiveClause *OMPInclusiveClause::Create(const ASTContext &C, in Create()
1533 new (Mem) OMPInclusiveClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
1538 OMPInclusiveClause *OMPInclusiveClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1541 return new (Mem) OMPInclusiveClause(N); in CreateEmpty()
2465 void OMPClausePrinter::VisitOMPInclusiveClause(OMPInclusiveClause *Node) { in VisitOMPInclusiveClause()
H A DStmtProfile.cpp903 void OMPClauseProfiler::VisitOMPInclusiveClause(const OMPInclusiveClause *C) { in VisitOMPInclusiveClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h8363 class OMPInclusiveClause final
8364 : public OMPVarListClause<OMPInclusiveClause>,
8365 private llvm::TrailingObjects<OMPInclusiveClause, Expr *> {
8376 OMPInclusiveClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPInclusiveClause() function
8378 : OMPVarListClause<OMPInclusiveClause>(llvm::omp::OMPC_inclusive, in OMPInclusiveClause()
8384 explicit OMPInclusiveClause(unsigned N) in OMPInclusiveClause() function
8385 : OMPVarListClause<OMPInclusiveClause>(llvm::omp::OMPC_inclusive, in OMPInclusiveClause()
8397 static OMPInclusiveClause *Create(const ASTContext &C,
8406 static OMPInclusiveClause *CreateEmpty(const ASTContext &C, unsigned N);
8414 auto Children = const_cast<OMPInclusiveClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3563 OMPInclusiveClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td206 let clangClass = "OMPInclusiveClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10660 C = OMPInclusiveClause::CreateEmpty(Context, Record.readInt()); in readClause()
11726 void OMPClauseReader::VisitOMPInclusiveClause(OMPInclusiveClause *C) { in VisitOMPInclusiveClause()
H A DASTWriter.cpp7802 void OMPClauseWriter::VisitOMPInclusiveClause(OMPInclusiveClause *C) { in VisitOMPInclusiveClause()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp5457 bool IsInclusive = S.hasClausesOfKind<OMPInclusiveClause>(); in EmitOMPScanDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h11066 TreeTransform<Derived>::TransformOMPInclusiveClause(OMPInclusiveClause *C) { in TransformOMPInclusiveClause()
H A DSemaOpenMP.cpp22915 return OMPInclusiveClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPInclusiveClause()