Searched refs:OMPLastprivateClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 46 return static_cast<const OMPLastprivateClause *>(C); in get() 108 return static_cast<const OMPLastprivateClause *>(C); in get() 223 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies() 229 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() 236 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs() 243 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps() 251 OMPLastprivateClause *OMPLastprivateClause::Create( in Create() 257 OMPLastprivateClause *Clause = in Create() 258 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 268 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() [all …]
|
D | StmtProfile.cpp | 385 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | StmtPrinter.cpp | 796 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1406 class OMPLastprivateClause final 1407 : public OMPVarListClause<OMPLastprivateClause>, 1409 private llvm::TrailingObjects<OMPLastprivateClause, Expr *> { 1438 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function 1440 : OMPVarListClause<OMPLastprivateClause>(OMPC_lastprivate, StartLoc, in OMPLastprivateClause() 1448 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function 1449 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause() 1530 static OMPLastprivateClause * 1540 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
|
D | RecursiveASTVisitor.h | 2762 OMPLastprivateClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 196 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 578 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPFirstprivateClause() 772 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseInit() 849 for (const auto *C : D.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPLastprivateClauseFinal() 2470 for (const auto *C : S.getClausesOfKind<OMPLastprivateClause>()) { in EmitOMPTaskBasedDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1847 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2073 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | ASTWriterStmt.cpp | 1908 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 1067 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock() 8773 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
|
D | TreeTransform.h | 7839 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2176 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|