Lines Matching refs:CALL_SEQ
406 #define CALL_SEQ(FUNC, TYPE, ARG) { \ macro
430 CALL_SEQ(astfold_stmt, stmt_ty, stmts); in astfold_body()
456 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Interactive.body); in astfold_mod()
472 CALL_SEQ(astfold_expr, expr_ty, node_->v.BoolOp.values); in astfold_expr()
493 CALL_SEQ(astfold_expr, expr_ty, node_->v.Dict.keys); in astfold_expr()
494 CALL_SEQ(astfold_expr, expr_ty, node_->v.Dict.values); in astfold_expr()
497 CALL_SEQ(astfold_expr, expr_ty, node_->v.Set.elts); in astfold_expr()
501 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.ListComp.generators); in astfold_expr()
505 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.SetComp.generators); in astfold_expr()
510 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.DictComp.generators); in astfold_expr()
514 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.GeneratorExp.generators); in astfold_expr()
527 CALL_SEQ(astfold_expr, expr_ty, node_->v.Compare.comparators); in astfold_expr()
532 CALL_SEQ(astfold_expr, expr_ty, node_->v.Call.args); in astfold_expr()
533 CALL_SEQ(astfold_keyword, keyword_ty, node_->v.Call.keywords); in astfold_expr()
540 CALL_SEQ(astfold_expr, expr_ty, node_->v.JoinedStr.values); in astfold_expr()
559 CALL_SEQ(astfold_expr, expr_ty, node_->v.List.elts); in astfold_expr()
562 CALL_SEQ(astfold_expr, expr_ty, node_->v.Tuple.elts); in astfold_expr()
589 CALL_SEQ(astfold_expr, expr_ty, node_->ifs); in astfold_comprehension()
598 CALL_SEQ(astfold_arg, arg_ty, node_->posonlyargs); in astfold_arguments()
599 CALL_SEQ(astfold_arg, arg_ty, node_->args); in astfold_arguments()
601 CALL_SEQ(astfold_arg, arg_ty, node_->kwonlyargs); in astfold_arguments()
602 CALL_SEQ(astfold_expr, expr_ty, node_->kw_defaults); in astfold_arguments()
604 CALL_SEQ(astfold_expr, expr_ty, node_->defaults); in astfold_arguments()
624 CALL_SEQ(astfold_expr, expr_ty, node_->v.FunctionDef.decorator_list); in astfold_stmt()
632 CALL_SEQ(astfold_expr, expr_ty, node_->v.AsyncFunctionDef.decorator_list); in astfold_stmt()
638 CALL_SEQ(astfold_expr, expr_ty, node_->v.ClassDef.bases); in astfold_stmt()
639 CALL_SEQ(astfold_keyword, keyword_ty, node_->v.ClassDef.keywords); in astfold_stmt()
641 CALL_SEQ(astfold_expr, expr_ty, node_->v.ClassDef.decorator_list); in astfold_stmt()
647 CALL_SEQ(astfold_expr, expr_ty, node_->v.Delete.targets); in astfold_stmt()
650 CALL_SEQ(astfold_expr, expr_ty, node_->v.Assign.targets); in astfold_stmt()
667 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.body); in astfold_stmt()
668 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.orelse); in astfold_stmt()
675 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.body); in astfold_stmt()
676 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.orelse); in astfold_stmt()
680 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.body); in astfold_stmt()
681 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.orelse); in astfold_stmt()
685 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.If.body); in astfold_stmt()
686 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.If.orelse); in astfold_stmt()
689 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.With.items); in astfold_stmt()
690 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.With.body); in astfold_stmt()
693 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.AsyncWith.items); in astfold_stmt()
694 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncWith.body); in astfold_stmt()
701 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.body); in astfold_stmt()
702 CALL_SEQ(astfold_excepthandler, excepthandler_ty, node_->v.Try.handlers); in astfold_stmt()
703 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.orelse); in astfold_stmt()
704 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.finalbody); in astfold_stmt()
725 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.ExceptHandler.body); in astfold_excepthandler()
743 #undef CALL_SEQ