Lines Matching defs:CompoundStmt
205 else if (auto CS = dyn_cast_or_null<CompoundStmt>(S)) {
366 CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, FPOptionsOverride FPFeatures,
376 void CompoundStmt::setStmts(ArrayRef<Stmt *> Stmts) {
383 CompoundStmt *CompoundStmt::Create(const ASTContext &C, ArrayRef<Stmt *> Stmts,
389 alignof(CompoundStmt));
390 return new (Mem) CompoundStmt(Stmts, FPFeatures, LB, RB);
393 CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C, unsigned NumStmts,
397 alignof(CompoundStmt));
398 CompoundStmt *New = new (Mem) CompoundStmt(EmptyShell());