Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp46 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 …]
DStmtProfile.cpp385 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DStmtPrinter.cpp796 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
/external/clang/include/clang/AST/
DOpenMPClause.h1406 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);
DRecursiveASTVisitor.h2762 OMPLastprivateClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def196 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp578 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/
DASTReaderStmt.cpp1847 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2073 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DASTWriterStmt.cpp1908 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp1067 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
8773 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
DTreeTransform.h7839 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
/external/clang/tools/libclang/
DCIndex.cpp2176 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()