Lines Matching refs:PyArena

8 make_const(expr_ty node, PyObject *val, PyArena *arena)  in make_const()
39 fold_unaryop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_unaryop()
216 fold_binop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_binop()
298 fold_tuple(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_tuple()
310 fold_subscr(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_subscr()
335 fold_iter(expr_ty arg, PyArena *arena, _PyASTOptimizeState *state) in fold_iter()
368 fold_compare(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_compare()
389 static int astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
390 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
391 static int astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
392 static int astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
393 static int astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
394 static int astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
395 static int astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
396 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
397 static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
427 astfold_body(asdl_seq *stmts, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_body()
449 astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_mod()
468 astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_expr()
578 astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_keyword()
585 astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_comprehension()
596 astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_arguments()
609 astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_arg()
618 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_stmt()
720 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_excepthandler()
734 astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_withitem()
747 _PyAST_Optimize(mod_ty mod, PyArena *arena, _PyASTOptimizeState *state) in _PyAST_Optimize()