Searched refs:OMPCopyinClause (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 643 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() 650 void OMPCopyinClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs() 657 void OMPCopyinClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps() 665 OMPCopyinClause *OMPCopyinClause::Create( in Create() 670 OMPCopyinClause *Clause = in Create() 671 new (Mem) OMPCopyinClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 679 OMPCopyinClause *OMPCopyinClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 681 return new (Mem) OMPCopyinClause(N); in CreateEmpty() 2151 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
|
| H A D | StmtProfile.cpp | 763 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 4237 class OMPCopyinClause final 4238 : public OMPVarListClause<OMPCopyinClause>, 4239 private llvm::TrailingObjects<OMPCopyinClause, Expr *> { 4263 OMPCopyinClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyinClause() function 4265 : OMPVarListClause<OMPCopyinClause>(llvm::omp::OMPC_copyin, StartLoc, in OMPCopyinClause() 4271 explicit OMPCopyinClause(unsigned N) in OMPCopyinClause() function 4272 : OMPVarListClause<OMPCopyinClause>(llvm::omp::OMPC_copyin, in OMPCopyinClause() 4338 static OMPCopyinClause * 4347 static OMPCopyinClause *CreateEmpty(const ASTContext &C, unsigned N); 4390 auto Children = const_cast<OMPCopyinClause *>(this)->children(); in children()
|
| H A D | RecursiveASTVisitor.h | 3544 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
|
| /llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 98 let clangClass = "OMPCopyinClause";
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11653 C = OMPCopyinClause::CreateEmpty(Context, Record.readInt()); in readClause() 12263 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| H A D | ASTWriter.cpp | 6554 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndex.cpp | 2608 void OMPClauseEnqueue::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 977 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | TreeTransform.h | 10027 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()
|
| H A D | SemaOpenMP.cpp | 20036 return OMPCopyinClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars, in ActOnOpenMPCopyinClause()
|