Searched refs:OMPCopyprivateClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 297 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()
|
D | StmtProfile.cpp | 435 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
D | StmtPrinter.cpp | 860 void OMPClausePrinter::VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) { in VisitOMPCopyprivateClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2212 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);
|
D | RecursiveASTVisitor.h | 2681 OMPCopyprivateClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 150 OPENMP_CLAUSE(copyprivate, OMPCopyprivateClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1842 C = OMPCopyprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2133 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
D | ASTWriterStmt.cpp | 1960 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1811 for (const auto *C : S.getClausesOfKind<OMPCopyprivateClause>()) { in EmitOMPSingleDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2192 OMPClauseEnqueue::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { in VisitOMPCopyprivateClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 7973 return OMPCopyprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPCopyprivateClause()
|
D | TreeTransform.h | 7734 TreeTransform<Derived>::TransformOMPCopyprivateClause(OMPCopyprivateClause *C) { in TransformOMPCopyprivateClause()
|