Searched refs:CALL_OPT (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Python/ |
D | ast_opt.c | 431 #define CALL_OPT(FUNC, TYPE, ARG) \ macro 569 CALL_OPT(astfold_expr, expr_ty, node_->v.Yield.value); in astfold_expr() 586 CALL_OPT(astfold_expr, expr_ty, node_->v.FormattedValue.format_spec); in astfold_expr() 625 CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.lower); in astfold_slice() 626 CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.upper); in astfold_slice() 627 CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.step); in astfold_slice() 663 CALL_OPT(astfold_arg, arg_ty, node_->vararg); in astfold_arguments() 666 CALL_OPT(astfold_arg, arg_ty, node_->kwarg); in astfold_arguments() 674 CALL_OPT(astfold_expr, expr_ty, node_->annotation); in astfold_arg() 686 CALL_OPT(astfold_expr, expr_ty, node_->v.FunctionDef.returns); in astfold_stmt() [all …]
|