Home | History | Annotate | Download | only in AST

Lines Matching refs:OMPLastprivateClause

1171 OMPLastprivateClause *OMPLastprivateClause::Create(const ASTContext &C,
1176 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause),
1179 OMPLastprivateClause *Clause =
1180 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size());
1185 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C,
1187 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLastprivateClause),
1190 return new (Mem) OMPLastprivateClause(N);