Lines Matching refs:PyArena
9 make_const(expr_ty node, PyObject *val, PyArena *arena) in make_const()
42 fold_unaryop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_unaryop()
228 fold_binop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_binop()
313 fold_tuple(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_tuple()
325 fold_subscr(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_subscr()
350 fold_iter(expr_ty arg, PyArena *arena, _PyASTOptimizeState *state) in fold_iter()
383 fold_compare(expr_ty node, PyArena *arena, _PyASTOptimizeState *state) in fold_compare()
404 static int astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
405 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
406 static int astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
407 static int astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
408 static int astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
409 static int astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
410 static int astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
411 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
412 static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
413 static int astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
414 static int astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
445 astfold_body(asdl_stmt_seq *stmts, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_body()
468 astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_mod()
490 astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_expr()
613 astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_keyword()
620 astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_comprehension()
631 astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_arguments()
644 astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_arg()
653 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_stmt()
774 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_excepthandler()
788 astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_withitem()
796 astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_pattern()
842 astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_match_case()
859 _PyAST_Optimize(mod_ty mod, PyArena *arena, _PyASTOptimizeState *state) in _PyAST_Optimize()