• Home
  • Raw
  • Download

Lines Matching refs:optimize_

417 static int astfold_mod(mod_ty node_, PyArena *ctx_, int optimize_);
418 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, int optimize_);
419 static int astfold_expr(expr_ty node_, PyArena *ctx_, int optimize_);
420 static int astfold_arguments(arguments_ty node_, PyArena *ctx_, int optimize_);
421 static int astfold_comprehension(comprehension_ty node_, PyArena *ctx_, int optimize_);
422 static int astfold_keyword(keyword_ty node_, PyArena *ctx_, int optimize_);
423 static int astfold_slice(slice_ty node_, PyArena *ctx_, int optimize_);
424 static int astfold_arg(arg_ty node_, PyArena *ctx_, int optimize_);
425 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, int optimize_);
426 static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, int optimize_);
428 if (!FUNC((ARG), ctx_, optimize_)) \
432 if ((ARG) != NULL && !FUNC((ARG), ctx_, optimize_)) \
440 if (elt != NULL && !FUNC(elt, ctx_, optimize_)) \
450 if (!FUNC(elt, ctx_, optimize_)) \
468 astfold_body(asdl_seq *stmts, PyArena *ctx_, int optimize_) in astfold_body() argument
495 astfold_mod(mod_ty node_, PyArena *ctx_, int optimize_) in astfold_mod() argument
517 astfold_expr(expr_ty node_, PyArena *ctx_, int optimize_) in astfold_expr() argument
611 return make_const(node_, PyBool_FromLong(!optimize_), ctx_); in astfold_expr()
621 astfold_slice(slice_ty node_, PyArena *ctx_, int optimize_) in astfold_slice() argument
642 astfold_keyword(keyword_ty node_, PyArena *ctx_, int optimize_) in astfold_keyword() argument
649 astfold_comprehension(comprehension_ty node_, PyArena *ctx_, int optimize_) in astfold_comprehension() argument
660 astfold_arguments(arguments_ty node_, PyArena *ctx_, int optimize_) in astfold_arguments() argument
672 astfold_arg(arg_ty node_, PyArena *ctx_, int optimize_) in astfold_arg() argument
679 astfold_stmt(stmt_ty node_, PyArena *ctx_, int optimize_) in astfold_stmt() argument
775 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, int optimize_) in astfold_excepthandler() argument
789 astfold_withitem(withitem_ty node_, PyArena *ctx_, int optimize_) in astfold_withitem() argument