Lines Matching refs:astfold_stmt
390 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
430 CALL_SEQ(astfold_stmt, stmt_ty, stmts); in astfold_body()
456 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Interactive.body); in astfold_mod()
618 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_stmt() function
667 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.body); in astfold_stmt()
668 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.orelse); in astfold_stmt()
675 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.body); in astfold_stmt()
676 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.orelse); in astfold_stmt()
680 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.body); in astfold_stmt()
681 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.orelse); in astfold_stmt()
685 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.If.body); in astfold_stmt()
686 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.If.orelse); in astfold_stmt()
690 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.With.body); in astfold_stmt()
694 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncWith.body); in astfold_stmt()
701 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.body); in astfold_stmt()
703 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.orelse); in astfold_stmt()
704 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.finalbody); in astfold_stmt()
725 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.ExceptHandler.body); in astfold_excepthandler()