Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp657 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 DStmtProfile.cpp792 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { in VisitOMPCopyinClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4415 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 DRecursiveASTVisitor.h3653 bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td101 let clangClass = "OMPCopyinClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10546 C = OMPCopyinClause::CreateEmpty(Context, Record.readInt()); in readClause()
11200 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
H A DASTWriter.cpp7452 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) { in VisitOMPCopyinClause()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1002 for (const auto *C : D.getClausesOfKind<OMPCopyinClause>()) { in EmitOMPCopyinClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h10687 TreeTransform<Derived>::TransformOMPCopyinClause(OMPCopyinClause *C) { in TransformOMPCopyinClause()
H A DSemaOpenMP.cpp19494 return OMPCopyinClause::Create(getASTContext(), StartLoc, LParenLoc, EndLoc, in ActOnOpenMPCopyinClause()