Searched refs:OMPLastprivateClause (Results 1 – 13 of 13) sorted by relevance
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1140 class OMPLastprivateClause : public OMPVarListClause<OMPLastprivateClause> { 1167 OMPLastprivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLastprivateClause() function 1169 : OMPVarListClause<OMPLastprivateClause>(OMPC_lastprivate, StartLoc, in OMPLastprivateClause() 1176 explicit OMPLastprivateClause(unsigned N) in OMPLastprivateClause() function 1177 : OMPVarListClause<OMPLastprivateClause>( in OMPLastprivateClause() 1254 static OMPLastprivateClause * 1263 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
|
D | DataRecursiveASTVisitor.h | 2520 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | RecursiveASTVisitor.h | 2550 OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1249 void OMPLastprivateClause::setPrivateCopies(ArrayRef<Expr *> PrivateCopies) { in setPrivateCopies() 1255 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() 1262 void OMPLastprivateClause::setDestinationExprs(ArrayRef<Expr *> DstExprs) { in setDestinationExprs() 1269 void OMPLastprivateClause::setAssignmentOps(ArrayRef<Expr *> AssignmentOps) { in setAssignmentOps() 1277 OMPLastprivateClause *OMPLastprivateClause::Create( in Create() 1281 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in Create() 1284 OMPLastprivateClause *Clause = in Create() 1285 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 1293 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 1295 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause), in CreateEmpty() [all …]
|
D | StmtProfile.cpp | 347 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | StmtPrinter.cpp | 716 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { in VisitOMPLastprivateClause()
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 106 OPENMP_CLAUSE(lastprivate, OMPLastprivateClause)
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 332 auto *C = cast<OMPLastprivateClause>(*I); in EmitOMPLastprivateClauseInit() 390 auto *C = cast<OMPLastprivateClause>(*I); in EmitOMPLastprivateClauseFinal()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1755 C = OMPLastprivateClause::CreateEmpty(Context, Record[Idx++]); in readClause() 1884 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
D | ASTWriterStmt.cpp | 1796 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 586 if (auto *Clause = dyn_cast<OMPLastprivateClause>(C)) { in EndOpenMPDSABlock() 5117 return OMPLastprivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPLastprivateClause()
|
D | TreeTransform.h | 7104 TreeTransform<Derived>::TransformOMPLastprivateClause(OMPLastprivateClause *C) { in TransformOMPLastprivateClause()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2023 const OMPLastprivateClause *C) { in VisitOMPLastprivateClause()
|