Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp297 void OMPCopyprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs()
304 void OMPCopyprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs()
311 void OMPCopyprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps()
319 OMPCopyprivateClause *OMPCopyprivateClause::Create( in Create()
323 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPCopyprivateClause), in Create()
326 OMPCopyprivateClause *Clause = in Create()
327 new (Mem) OMPCopyprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
335 OMPCopyprivateClause *OMPCopyprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
337 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPCopyprivateClause), in CreateEmpty()
340 return new (Mem) OMPCopyprivateClause(N); in CreateEmpty()
DStmtProfile.cpp435 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
DStmtPrinter.cpp860 void OMPClausePrinter::VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) { in VisitOMPCopyprivateClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2212 class OMPCopyprivateClause : public OMPVarListClause<OMPCopyprivateClause> {
2221 OMPCopyprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPCopyprivateClause() function
2223 : OMPVarListClause<OMPCopyprivateClause>(OMPC_copyprivate, StartLoc, in OMPCopyprivateClause()
2230 explicit OMPCopyprivateClause(unsigned N) in OMPCopyprivateClause() function
2231 : OMPVarListClause<OMPCopyprivateClause>( in OMPCopyprivateClause()
2297 static OMPCopyprivateClause *
2306 static OMPCopyprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2681 OMPCopyprivateClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def150 OPENMP_CLAUSE(copyprivate, OMPCopyprivateClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1842 C = OMPCopyprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2133 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
DASTWriterStmt.cpp1960 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp1811 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { in EmitOMPSingleDirective()
/external/clang/tools/libclang/
DCIndex.cpp2192 OMPClauseEnqueue::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp7973 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPCopyprivateClause()
DTreeTransform.h7734 TreeTransform<Derived>::TransformOMPCopyprivateClause(OMPCopyprivateClause *C) { in TransformOMPCopyprivateClause()