Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp698 void OMPCopyprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
705 void OMPCopyprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
712 void OMPCopyprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
720 OMPCopyprivateClause *OMPCopyprivateClause::Create( in Create()
725 OMPCopyprivateClause *Clause = in Create()
726 new (Mem) OMPCopyprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
734 OMPCopyprivateClause *OMPCopyprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
737 return new (Mem) OMPCopyprivateClause(N); in CreateEmpty()
2265 void OMPClausePrinter::VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) { in VisitOMPCopyprivateClause()
H A DStmtProfile.cpp808 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4592 class OMPCopyprivateClause final
4593 : public OMPVarListClause<OMPCopyprivateClause>,
4594 private llvm::TrailingObjects<OMPCopyprivateClause, Expr *> {
4605 OMPCopyprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyprivateClause() function
4607 : OMPVarListClause<OMPCopyprivateClause>(llvm::omp::OMPC_copyprivate, in OMPCopyprivateClause()
4614 explicit OMPCopyprivateClause(unsigned N) in OMPCopyprivateClause() function
4615 : OMPVarListClause<OMPCopyprivateClause>( in OMPCopyprivateClause()
4680 static OMPCopyprivateClause *
4689 static OMPCopyprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
4732 auto Children = const_cast<OMPCopyprivateClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3669 OMPCopyprivateClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td105 let clangClass = "OMPCopyprivateClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10604 C = OMPCopyprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11277 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
H A DASTWriter.cpp7471 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp4272 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { in EmitOMPSingleDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h10702 TreeTransform<Derived>::TransformOMPCopyprivateClause(OMPCopyprivateClause *C) { in TransformOMPCopyprivateClause()
H A DSemaOpenMP.cpp19607 return OMPCopyprivateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPCopyprivateClause()