Searched refs:OMPLastprivateClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 789 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);
|
D | DataRecursiveASTVisitor.h | 2401 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | RecursiveASTVisitor.h | 2423 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1171 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()
|
D | StmtProfile.cpp | 318 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | StmtPrinter.cpp | 686 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 75 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1715 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause() 1810 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | ASTWriterStmt.cpp | 1742 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 491 if (auto Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock() 2852 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
|
D | TreeTransform.h | 6623 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1979 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|