Home | History | Annotate | Download | only in AST

Lines Matching refs:OMPLinearClause

1215 OMPLinearClause *OMPLinearClause::Create(const ASTContext &C,
1221 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLinearClause),
1224 OMPLinearClause *Clause = new (Mem)
1225 OMPLinearClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size());
1231 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C,
1233 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPLinearClause),
1236 return new (Mem) OMPLinearClause(NumVars);