Searched refs:OMPCopyprivateClause (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 698 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 D | StmtProfile.cpp | 808 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 4592 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 D | RecursiveASTVisitor.h | 3669 OMPCopyprivateClause *C) {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 105 let clangClass = "OMPCopyprivateClause";
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10604 C = OMPCopyprivateClause::CreateEmpty(Context, Record.readInt()); in readClause() 11277 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
H A D | ASTWriter.cpp | 7471 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 4272 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { in EmitOMPSingleDirective()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 10702 TreeTransform<Derived>::TransformOMPCopyprivateClause(OMPCopyprivateClause *C) { in TransformOMPCopyprivateClause()
|
H A D | SemaOpenMP.cpp | 19607 return OMPCopyprivateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPCopyprivateClause()
|