Searched refs:OMPCopyinClause (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 657 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() 664 void OMPCopyinClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs() 671 void OMPCopyinClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps() 679 OMPCopyinClause *OMPCopyinClause::Create( in Create() 684 OMPCopyinClause *Clause = in Create() 685 new (Mem) OMPCopyinClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 693 OMPCopyinClause *OMPCopyinClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() 695 return new (Mem) OMPCopyinClause(N); in CreateEmpty() 2257 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { in VisitOMPCopyinClause()
|
H A D | StmtProfile.cpp | 792 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 4415 class OMPCopyinClause final 4416 : public OMPVarListClause<OMPCopyinClause>, 4417 private llvm::TrailingObjects<OMPCopyinClause, Expr *> { 4441 OMPCopyinClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyinClause() function 4443 : OMPVarListClause<OMPCopyinClause>(llvm::omp::OMPC_copyin, StartLoc, in OMPCopyinClause() 4449 explicit OMPCopyinClause(unsigned N) in OMPCopyinClause() function 4450 : OMPVarListClause<OMPCopyinClause>(llvm::omp::OMPC_copyin, in OMPCopyinClause() 4516 static OMPCopyinClause * 4525 static OMPCopyinClause *CreateEmpty(const ASTContext &C, unsigned N); 4568 auto Children = const_cast<OMPCopyinClause *>(this)->children(); in children()
|
H A D | RecursiveASTVisitor.h | 3653 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 101 let clangClass = "OMPCopyinClause";
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10546 C = OMPCopyinClause::CreateEmpty(Context, Record.readInt()); in readClause() 11200 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
H A D | ASTWriter.cpp | 7452 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 1002 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 10687 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()
|
H A D | SemaOpenMP.cpp | 19494 return OMPCopyinClause::Create(getASTContext(), StartLoc, LParenLoc, EndLoc, in ActOnOpenMPCopyinClause()
|