Lines Matching defs:CompoundStmt
213 else if (auto CS = dyn_cast_or_null<CompoundStmt>(S)) {
374 CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, FPOptionsOverride FPFeatures,
384 void CompoundStmt::setStmts(ArrayRef<Stmt *> Stmts) {
391 CompoundStmt *CompoundStmt::Create(const ASTContext &C, ArrayRef<Stmt *> Stmts,
397 alignof(CompoundStmt));
398 return new (Mem) CompoundStmt(Stmts, FPFeatures, LB, RB);
401 CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C, unsigned NumStmts,
405 alignof(CompoundStmt));
406 CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell());