Searched refs:CALL_OPT (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Python/ |
D | ast_opt.c | 402 #define CALL_OPT(FUNC, TYPE, ARG) \ macro 520 CALL_OPT(astfold_expr, expr_ty, node_->v.Yield.value); in astfold_expr() 537 CALL_OPT(astfold_expr, expr_ty, node_->v.FormattedValue.format_spec); in astfold_expr() 554 CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.lower); in astfold_expr() 555 CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.upper); in astfold_expr() 556 CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.step); in astfold_expr() 600 CALL_OPT(astfold_arg, arg_ty, node_->vararg); in astfold_arguments() 603 CALL_OPT(astfold_arg, arg_ty, node_->kwarg); in astfold_arguments() 612 CALL_OPT(astfold_expr, expr_ty, node_->annotation); in astfold_arg() 626 CALL_OPT(astfold_expr, expr_ty, node_->v.FunctionDef.returns); in astfold_stmt() [all …]
|