Lines Matching refs:ctx_
392 static int astfold_mod(mod_ty node_, PyArena *ctx_, int optimize_);
393 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, int optimize_);
394 static int astfold_expr(expr_ty node_, PyArena *ctx_, int optimize_);
395 static int astfold_arguments(arguments_ty node_, PyArena *ctx_, int optimize_);
396 static int astfold_comprehension(comprehension_ty node_, PyArena *ctx_, int optimize_);
397 static int astfold_keyword(keyword_ty node_, PyArena *ctx_, int optimize_);
398 static int astfold_slice(slice_ty node_, PyArena *ctx_, int optimize_);
399 static int astfold_arg(arg_ty node_, PyArena *ctx_, int optimize_);
400 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, int optimize_);
401 static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, int optimize_);
403 if (!FUNC((ARG), ctx_, optimize_)) \
407 if ((ARG) != NULL && !FUNC((ARG), ctx_, optimize_)) \
415 if (elt != NULL && !FUNC(elt, ctx_, optimize_)) \
425 if (!FUNC(elt, ctx_, optimize_)) \
431 astfold_body(asdl_seq *stmts, PyArena *ctx_, int optimize_) in astfold_body() argument
437 asdl_seq *values = _Py_asdl_seq_new(1, ctx_); in astfold_body()
443 st->end_lineno, st->end_col_offset, ctx_); in astfold_body()
453 astfold_mod(mod_ty node_, PyArena *ctx_, int optimize_) in astfold_mod() argument
475 astfold_expr(expr_ty node_, PyArena *ctx_, int optimize_) in astfold_expr() argument
569 return make_const(node_, PyBool_FromLong(!optimize_), ctx_); in astfold_expr()
579 astfold_slice(slice_ty node_, PyArena *ctx_, int optimize_) in astfold_slice() argument
600 astfold_keyword(keyword_ty node_, PyArena *ctx_, int optimize_) in astfold_keyword() argument
607 astfold_comprehension(comprehension_ty node_, PyArena *ctx_, int optimize_) in astfold_comprehension() argument
618 astfold_arguments(arguments_ty node_, PyArena *ctx_, int optimize_) in astfold_arguments() argument
630 astfold_arg(arg_ty node_, PyArena *ctx_, int optimize_) in astfold_arg() argument
637 astfold_stmt(stmt_ty node_, PyArena *ctx_, int optimize_) in astfold_stmt() argument
733 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, int optimize_) in astfold_excepthandler() argument
747 astfold_withitem(withitem_ty node_, PyArena *ctx_, int optimize_) in astfold_withitem() argument