Lines Matching defs:block
1269 Block block (env, this);
1271 block.Loop(stmt->getCond(), stmt->getBody());
1272 } while (block.changed());
1273 return block.out();
1277 Block block (env, this);
1279 block.Loop(stmt->getBody(), stmt->getCond());
1280 } while (block.changed());
1281 return block.out();
1285 Block block (VisitStmt(stmt->getInit(), env), this);
1287 block.Loop(stmt->getCond(), stmt->getBody(), stmt->getInc());
1288 } while (block.changed());
1289 return block.out();
1300 Block block (env, this);
1301 block.Sequential(stmt->getCond(), stmt->getBody());
1302 return block.out();
1452 Block* EnterBlock(Block* block) {
1454 block_ = block;
1458 void LeaveBlock(Block* block) {
1459 block_ = block;