Home
last modified time | relevance | path

Searched refs:OMPCopyprivateClause (Results 1 – 12 of 12) 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/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/clang/include/clang/Basic/
DOpenMPKinds.def202 OPENMP_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/clang/tools/libclang/
DCIndex.cpp2246 OMPClauseEnqueue::VisitOMPCopyprivateClause(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()