Home | History | Annotate | Download | only in AST

Lines Matching refs:OMPAlignedClause

1239 OMPAlignedClause *
1240 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc,
1243 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPAlignedClause),
1246 OMPAlignedClause *Clause = new (Mem)
1247 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size());
1253 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C,
1255 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPAlignedClause),
1258 return new (Mem) OMPAlignedClause(NumVars);