Lines Matching refs:ctx_
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);
417 if (!FUNC((ARG), ctx_, state)) \
421 if ((ARG) != NULL && !FUNC((ARG), ctx_, state)) \
429 if (elt != NULL && !FUNC(elt, ctx_, state)) \
439 if (!FUNC(elt, ctx_, state)) \
445 astfold_body(asdl_stmt_seq *stmts, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_body() argument
451 asdl_expr_seq *values = _Py_asdl_expr_seq_new(1, ctx_); in astfold_body()
458 ctx_); in astfold_body()
468 astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_mod() argument
490 astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_expr() argument
596 return make_const(node_, PyBool_FromLong(!state->optimize), ctx_); in astfold_expr()
613 astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_keyword() argument
620 astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_comprehension() argument
631 astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_arguments() argument
644 astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_arg() argument
653 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_stmt() argument
774 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_excepthandler() argument
788 astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_withitem() argument
796 astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_pattern() argument
842 astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_match_case() argument