Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp409 void OMPCopyprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
416 void OMPCopyprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
423 void OMPCopyprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
431 OMPCopyprivateClause *OMPCopyprivateClause::Create( in Create()
436 OMPCopyprivateClause *Clause = in Create()
437 new (Mem) OMPCopyprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
445 OMPCopyprivateClause *OMPCopyprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
448 return new (Mem) OMPCopyprivateClause(N); in CreateEmpty()
DStmtProfile.cpp473 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
DStmtPrinter.cpp872 void OMPClausePrinter::VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) { in VisitOMPCopyprivateClause()
/external/llvm-project/clang/lib/AST/
DOpenMPClause.cpp650 void OMPCopyprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
657 void OMPCopyprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
664 void OMPCopyprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
672 OMPCopyprivateClause *OMPCopyprivateClause::Create( in Create()
677 OMPCopyprivateClause *Clause = in Create()
678 new (Mem) OMPCopyprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
686 OMPCopyprivateClause *OMPCopyprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
689 return new (Mem) OMPCopyprivateClause(N); in CreateEmpty()
1910 void OMPClausePrinter::VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) { in VisitOMPCopyprivateClause()
DStmtProfile.cpp724 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2361 class OMPCopyprivateClause final
2362 : public OMPVarListClause<OMPCopyprivateClause>,
2363 private llvm::TrailingObjects<OMPCopyprivateClause, Expr *> {
2374 OMPCopyprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyprivateClause() function
2376 : OMPVarListClause<OMPCopyprivateClause>(OMPC_copyprivate, StartLoc, in OMPCopyprivateClause()
2383 explicit OMPCopyprivateClause(unsigned N) in OMPCopyprivateClause() function
2384 : OMPVarListClause<OMPCopyprivateClause>( in OMPCopyprivateClause()
2450 static OMPCopyprivateClause *
2459 static OMPCopyprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2831 OMPCopyprivateClause *C) {
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h4095 class OMPCopyprivateClause final
4096 : public OMPVarListClause<OMPCopyprivateClause>,
4097 private llvm::TrailingObjects<OMPCopyprivateClause, Expr *> {
4108 OMPCopyprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyprivateClause() function
4110 : OMPVarListClause<OMPCopyprivateClause>(llvm::omp::OMPC_copyprivate, in OMPCopyprivateClause()
4117 explicit OMPCopyprivateClause(unsigned N) in OMPCopyprivateClause() function
4118 : OMPVarListClause<OMPCopyprivateClause>( in OMPCopyprivateClause()
4183 static OMPCopyprivateClause *
4192 static OMPCopyprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
4235 auto Children = const_cast<OMPCopyprivateClause *>(this)->children(); in children()
DRecursiveASTVisitor.h3288 OMPCopyprivateClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def202 OPENMP_CLAUSE(copyprivate, OMPCopyprivateClause)
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td99 let clangClass = "OMPCopyprivateClause";
DOMPKinds.def63 __OMP_CLAUSE(copyprivate, OMPCopyprivateClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1865 C = OMPCopyprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2211 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
DASTWriterStmt.cpp1998 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2318 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { in EmitOMPSingleDirective()
/external/llvm-project/clang/lib/Serialization/
DASTReader.cpp11966 C = OMPCopyprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
12515 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
DASTWriter.cpp6534 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/external/clang/tools/libclang/
DCIndex.cpp2246 OMPClauseEnqueue::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/external/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp3579 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { in EmitOMPSingleDirective()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2470 const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp10105 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPCopyprivateClause()
DTreeTransform.h7969 TreeTransform<Derived>::TransformOMPCopyprivateClause(OMPCopyprivateClause *C) { in TransformOMPCopyprivateClause()
/external/llvm-project/clang/lib/Sema/
DTreeTransform.h9505 TreeTransform<Derived>::TransformOMPCopyprivateClause(OMPCopyprivateClause *C) { in TransformOMPCopyprivateClause()
DSemaOpenMP.cpp16312 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPCopyprivateClause()