Searched refs:OMPCopyprivateClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 409 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()
|
D | StmtProfile.cpp | 473 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
D | StmtPrinter.cpp | 872 void OMPClausePrinter::VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) { in VisitOMPCopyprivateClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2361 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);
|
D | RecursiveASTVisitor.h | 2831 OMPCopyprivateClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 202 OPENMP_CLAUSE(copyprivate, OMPCopyprivateClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1865 C = OMPCopyprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2211 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
D | ASTWriterStmt.cpp | 1998 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 2318 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { in EmitOMPSingleDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2246 OMPClauseEnqueue::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 10105 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPCopyprivateClause()
|
D | TreeTransform.h | 7969 TreeTransform<Derived>::TransformOMPCopyprivateClause(OMPCopyprivateClause *C) { in TransformOMPCopyprivateClause()
|