Lines Matching refs:CALL_SEQ

648 #define CALL_SEQ(FUNC, TYPE, ARG) { \
663 CALL_SEQ(astfold_stmt, stmt, stmts);
690 CALL_SEQ(astfold_stmt, stmt, node_->v.Interactive.body);
714 CALL_SEQ(astfold_expr, expr, node_->v.BoolOp.values);
735 CALL_SEQ(astfold_expr, expr, node_->v.Dict.keys);
736 CALL_SEQ(astfold_expr, expr, node_->v.Dict.values);
739 CALL_SEQ(astfold_expr, expr, node_->v.Set.elts);
743 CALL_SEQ(astfold_comprehension, comprehension, node_->v.ListComp.generators);
747 CALL_SEQ(astfold_comprehension, comprehension, node_->v.SetComp.generators);
752 CALL_SEQ(astfold_comprehension, comprehension, node_->v.DictComp.generators);
756 CALL_SEQ(astfold_comprehension, comprehension, node_->v.GeneratorExp.generators);
769 CALL_SEQ(astfold_expr, expr, node_->v.Compare.comparators);
774 CALL_SEQ(astfold_expr, expr, node_->v.Call.args);
775 CALL_SEQ(astfold_keyword, keyword, node_->v.Call.keywords);
782 CALL_SEQ(astfold_expr, expr, node_->v.JoinedStr.values);
801 CALL_SEQ(astfold_expr, expr, node_->v.List.elts);
804 CALL_SEQ(astfold_expr, expr, node_->v.Tuple.elts);
839 CALL_SEQ(astfold_expr, expr, node_->ifs);
848 CALL_SEQ(astfold_arg, arg, node_->posonlyargs);
849 CALL_SEQ(astfold_arg, arg, node_->args);
851 CALL_SEQ(astfold_arg, arg, node_->kwonlyargs);
852 CALL_SEQ(astfold_expr, expr, node_->kw_defaults);
854 CALL_SEQ(astfold_expr, expr, node_->defaults);
879 CALL_SEQ(astfold_expr, expr, node_->v.FunctionDef.decorator_list);
887 CALL_SEQ(astfold_expr, expr, node_->v.AsyncFunctionDef.decorator_list);
893 CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.bases);
894 CALL_SEQ(astfold_keyword, keyword, node_->v.ClassDef.keywords);
896 CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.decorator_list);
902 CALL_SEQ(astfold_expr, expr, node_->v.Delete.targets);
905 CALL_SEQ(astfold_expr, expr, node_->v.Assign.targets);
922 CALL_SEQ(astfold_stmt, stmt, node_->v.For.body);
923 CALL_SEQ(astfold_stmt, stmt, node_->v.For.orelse);
930 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.body);
931 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.orelse);
935 CALL_SEQ(astfold_stmt, stmt, node_->v.While.body);
936 CALL_SEQ(astfold_stmt, stmt, node_->v.While.orelse);
940 CALL_SEQ(astfold_stmt, stmt, node_->v.If.body);
941 CALL_SEQ(astfold_stmt, stmt, node_->v.If.orelse);
944 CALL_SEQ(astfold_withitem, withitem, node_->v.With.items);
945 CALL_SEQ(astfold_stmt, stmt, node_->v.With.body);
948 CALL_SEQ(astfold_withitem, withitem, node_->v.AsyncWith.items);
949 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncWith.body);
956 CALL_SEQ(astfold_stmt, stmt, node_->v.Try.body);
957 CALL_SEQ(astfold_excepthandler, excepthandler, node_->v.Try.handlers);
958 CALL_SEQ(astfold_stmt, stmt, node_->v.Try.orelse);
959 CALL_SEQ(astfold_stmt, stmt, node_->v.Try.finalbody);
962 CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.body);
963 CALL_SEQ(astfold_excepthandler, excepthandler, node_->v.TryStar.handlers);
964 CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.orelse);
965 CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.finalbody);
976 CALL_SEQ(astfold_match_case, match_case, node_->v.Match.cases);
1000 CALL_SEQ(astfold_stmt, stmt, node_->v.ExceptHandler.body);
1034 CALL_SEQ(astfold_pattern, pattern, node_->v.MatchSequence.patterns);
1037 CALL_SEQ(astfold_expr, expr, node_->v.MatchMapping.keys);
1038 CALL_SEQ(astfold_pattern, pattern, node_->v.MatchMapping.patterns);
1042 CALL_SEQ(astfold_pattern, pattern, node_->v.MatchClass.patterns);
1043 CALL_SEQ(astfold_pattern, pattern, node_->v.MatchClass.kwd_patterns);
1053 CALL_SEQ(astfold_pattern, pattern, node_->v.MatchOr.patterns);
1067 CALL_SEQ(astfold_stmt, stmt, node_->body);
1073 #undef CALL_SEQ