Lines Matching refs:asdl_seq_LEN
127 value_count = asdl_seq_LEN(values); in append_ast_boolop()
219 posonlyarg_count = asdl_seq_LEN(args->posonlyargs); in append_ast_args()
220 arg_count = asdl_seq_LEN(args->args); in append_ast_args()
221 default_count = asdl_seq_LEN(args->defaults); in append_ast_args()
241 if (args->vararg || asdl_seq_LEN(args->kwonlyargs)) { in append_ast_args()
250 arg_count = asdl_seq_LEN(args->kwonlyargs); in append_ast_args()
251 default_count = asdl_seq_LEN(args->kw_defaults); in append_ast_args()
280 Py_ssize_t n_positional = (asdl_seq_LEN(e->v.Lambda.args->args) + in append_ast_lambda()
281 asdl_seq_LEN(e->v.Lambda.args->posonlyargs)); in append_ast_lambda()
310 value_count = asdl_seq_LEN(e->v.Dict.values); in append_ast_dict()
335 elem_count = asdl_seq_LEN(e->v.Set.elts); in append_ast_set()
350 elem_count = asdl_seq_LEN(e->v.List.elts); in append_ast_list()
364 elem_count = asdl_seq_LEN(e->v.Tuple.elts); in append_ast_tuple()
392 if_count = asdl_seq_LEN(gen->ifs); in append_ast_comprehension()
404 gen_count = asdl_seq_LEN(comprehensions); in append_ast_comprehensions()
463 comparator_count = asdl_seq_LEN(comparators); in append_ast_compare()
465 assert(comparator_count == asdl_seq_LEN(ops)); in append_ast_compare()
542 arg_count = asdl_seq_LEN(e->v.Call.args); in append_ast_call()
543 kw_count = asdl_seq_LEN(e->v.Call.keywords); in append_ast_call()
623 value_count = asdl_seq_LEN(values); in build_fstring_body()
787 for (Py_ssize_t i = 0; i < asdl_seq_LEN(slice->v.Tuple.elts); i++) { in append_ast_subscript()