Lines Matching refs:_PyASTOptimizeState

4 #include "pycore_compile.h"       // _PyASTOptimizeState
57 fold_unaryop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)
445 fold_binop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)
542 fold_tuple(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)
554 fold_subscr(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)
579 fold_iter(expr_ty arg, PyArena *arena, _PyASTOptimizeState *state)
608 fold_compare(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)
628 static int astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
629 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
630 static int astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
631 static int astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
632 static int astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
633 static int astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
634 static int astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
635 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
636 static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
637 static int astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
638 static int astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
660 astfold_body(asdl_stmt_seq *stmts, PyArena *ctx_, _PyASTOptimizeState *state)
683 astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
705 astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
828 astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
835 astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
846 astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
859 astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
868 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
995 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
1009 astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
1017 astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
1063 astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
1079 _PyAST_Optimize(mod_ty mod, PyArena *arena, _PyASTOptimizeState *state)