• Home
  • Raw
  • Download

Lines Matching refs:CALL_SEQ

435 #define CALL_SEQ(FUNC, TYPE, ARG) { \  macro
474 CALL_SEQ(astfold_stmt, stmt_ty, stmts); in astfold_body()
502 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Interactive.body); in astfold_mod()
508 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Suite.body); in astfold_mod()
521 CALL_SEQ(astfold_expr, expr_ty, node_->v.BoolOp.values); in astfold_expr()
542 CALL_SEQ(astfold_expr, expr_ty, node_->v.Dict.keys); in astfold_expr()
543 CALL_SEQ(astfold_expr, expr_ty, node_->v.Dict.values); in astfold_expr()
546 CALL_SEQ(astfold_expr, expr_ty, node_->v.Set.elts); in astfold_expr()
550 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.ListComp.generators); in astfold_expr()
554 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.SetComp.generators); in astfold_expr()
559 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.DictComp.generators); in astfold_expr()
563 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.GeneratorExp.generators); in astfold_expr()
576 CALL_SEQ(astfold_expr, expr_ty, node_->v.Compare.comparators); in astfold_expr()
581 CALL_SEQ(astfold_expr, expr_ty, node_->v.Call.args); in astfold_expr()
582 CALL_SEQ(astfold_keyword, keyword_ty, node_->v.Call.keywords); in astfold_expr()
589 CALL_SEQ(astfold_expr, expr_ty, node_->v.JoinedStr.values); in astfold_expr()
603 CALL_SEQ(astfold_expr, expr_ty, node_->v.List.elts); in astfold_expr()
606 CALL_SEQ(astfold_expr, expr_ty, node_->v.Tuple.elts); in astfold_expr()
630 CALL_SEQ(astfold_slice, slice_ty, node_->v.ExtSlice.dims); in astfold_slice()
653 CALL_SEQ(astfold_expr, expr_ty, node_->ifs); in astfold_comprehension()
662 CALL_SEQ(astfold_arg, arg_ty, node_->args); in astfold_arguments()
664 CALL_SEQ(astfold_arg, arg_ty, node_->kwonlyargs); in astfold_arguments()
665 CALL_SEQ(astfold_expr, expr_ty, node_->kw_defaults); in astfold_arguments()
667 CALL_SEQ(astfold_expr, expr_ty, node_->defaults); in astfold_arguments()
685 CALL_SEQ(astfold_expr, expr_ty, node_->v.FunctionDef.decorator_list); in astfold_stmt()
691 CALL_SEQ(astfold_expr, expr_ty, node_->v.AsyncFunctionDef.decorator_list); in astfold_stmt()
695 CALL_SEQ(astfold_expr, expr_ty, node_->v.ClassDef.bases); in astfold_stmt()
696 CALL_SEQ(astfold_keyword, keyword_ty, node_->v.ClassDef.keywords); in astfold_stmt()
698 CALL_SEQ(astfold_expr, expr_ty, node_->v.ClassDef.decorator_list); in astfold_stmt()
704 CALL_SEQ(astfold_expr, expr_ty, node_->v.Delete.targets); in astfold_stmt()
707 CALL_SEQ(astfold_expr, expr_ty, node_->v.Assign.targets); in astfold_stmt()
722 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.body); in astfold_stmt()
723 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.orelse); in astfold_stmt()
730 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.body); in astfold_stmt()
731 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.orelse); in astfold_stmt()
735 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.body); in astfold_stmt()
736 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.orelse); in astfold_stmt()
740 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.If.body); in astfold_stmt()
741 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.If.orelse); in astfold_stmt()
744 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.With.items); in astfold_stmt()
745 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.With.body); in astfold_stmt()
748 CALL_SEQ(astfold_withitem, withitem_ty, node_->v.AsyncWith.items); in astfold_stmt()
749 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncWith.body); in astfold_stmt()
756 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.body); in astfold_stmt()
757 CALL_SEQ(astfold_excepthandler, excepthandler_ty, node_->v.Try.handlers); in astfold_stmt()
758 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.orelse); in astfold_stmt()
759 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Try.finalbody); in astfold_stmt()
780 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.ExceptHandler.body); in astfold_excepthandler()
798 #undef CALL_SEQ