Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DOpenMPClause.h789 class OMPLastprivateClause : public OMPVarListClause<OMPLastprivateClause> {
797 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function
799 : OMPVarListClause<OMPLastprivateClause>(OMPC_lastprivate, StartLoc, in OMPLastprivateClause()
806 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function
807 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause()
820 static OMPLastprivateClause *
828 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
DDataRecursiveASTVisitor.h2401 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DRecursiveASTVisitor.h2423 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/lib/AST/
DStmt.cpp1171 OMPLastprivateClause *OMPLastprivateClause::Create(const ASTContext &C, in Create()
1176 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in Create()
1179 OMPLastprivateClause *Clause = in Create()
1180 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
1185 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1187 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in CreateEmpty()
1190 return new (Mem) OMPLastprivateClause(N); in CreateEmpty()
DStmtProfile.cpp318 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DStmtPrinter.cpp686 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
/external/clang/include/clang/Basic/
DOpenMPKinds.def75 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1715 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause()
1810 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
DASTWriterStmt.cpp1742 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp491 if (auto Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock()
2852 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
DTreeTransform.h6623 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
/external/clang/tools/libclang/
DCIndex.cpp1979 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()