• Home
  • Raw
  • Download

Lines Matching refs:asdl_seq_LEN

1530     for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \
1540 for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \
1568 for (i = 0; i < asdl_seq_LEN(stmts); i++) { in find_ann()
1596 for (j = 0; j < asdl_seq_LEN(st->v.Try.handlers); j++) { in find_ann()
1791 if (c->u->u_scope_type == COMPILER_SCOPE_MODULE && asdl_seq_LEN(stmts)) { in compiler_body()
1799 if (!asdl_seq_LEN(stmts)) in compiler_body()
1813 for (; i < asdl_seq_LEN(stmts); i++) in compiler_body()
1955 for (i = 0; i < asdl_seq_LEN(decos); i++) { in compiler_decorators()
1972 for (i = 0; i < asdl_seq_LEN(kwonlyargs); i++) { in compiler_visit_kwonlydefaults()
2054 for (i = 0; i < asdl_seq_LEN(args); i++) { in compiler_visit_argannotations()
2128 ADDOP_I(c, BUILD_TUPLE, asdl_seq_LEN(args->defaults)); in compiler_visit_defaults()
2136 if (args->defaults && asdl_seq_LEN(args->defaults) > 0) { in compiler_default_arguments()
2179 for (Py_ssize_t i = 0, n = asdl_seq_LEN(args); i < n; i++) { in compiler_check_debug_args_seq()
2247 if (asdl_seq_LEN(decos)) { in compiler_function()
2277 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_function()
2278 c->u->u_posonlyargcount = asdl_seq_LEN(args->posonlyargs); in compiler_function()
2279 c->u->u_kwonlyargcount = asdl_seq_LEN(args->kwonlyargs); in compiler_function()
2296 for (i = 0; i < asdl_seq_LEN(decos); i++) { in compiler_function()
2315 if (asdl_seq_LEN(decos)) { in compiler_class()
2427 for (i = 0; i < asdl_seq_LEN(decos); i++) { in compiler_class()
2461 n = asdl_seq_LEN(e->v.Compare.ops); in check_compare()
2532 Py_ssize_t i, n = asdl_seq_LEN(s) - 1; in compiler_jump_if()
2571 Py_ssize_t i, n = asdl_seq_LEN(e->v.Compare.ops) - 1; in compiler_jump_if()
2673 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_lambda()
2674 c->u->u_posonlyargcount = asdl_seq_LEN(args->posonlyargs); in compiler_lambda()
2675 c->u->u_kwonlyargcount = asdl_seq_LEN(args->kwonlyargs); in compiler_lambda()
2726 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
2738 if (asdl_seq_LEN(s->v.If.orelse)) { in compiler_if()
3000 if (s->v.Try.handlers && asdl_seq_LEN(s->v.Try.handlers)) { in compiler_try_finally()
3072 n = asdl_seq_LEN(s->v.Try.handlers); in compiler_try_except()
3171 if (s->v.Try.finalbody && asdl_seq_LEN(s->v.Try.finalbody)) in compiler_try()
3228 Py_ssize_t i, n = asdl_seq_LEN(s->v.Import.names); in compiler_import()
3266 Py_ssize_t i, n = asdl_seq_LEN(s->v.ImportFrom.names); in compiler_from_import()
3335 asdl_seq_LEN(s->v.Assert.test->v.Tuple.elts) > 0) in compiler_assert()
3396 n = asdl_seq_LEN(s->v.Assign.targets); in compiler_visit_stmt()
3663 n = asdl_seq_LEN(s) - 1; in compiler_boolop()
3678 Py_ssize_t n = asdl_seq_LEN(elts); in starunpack_helper()
3754 Py_ssize_t n = asdl_seq_LEN(elts); in assignment_helper()
3871 n = asdl_seq_LEN(e->v.Dict.values); in compiler_dict()
3934 assert(asdl_seq_LEN(e->v.Compare.ops) > 0); in compiler_compare()
3935 n = asdl_seq_LEN(e->v.Compare.ops) - 1; in compiler_compare()
4091 asdl_seq_LEN(e->v.Call.keywords)) in maybe_optimize_method_call()
4095 argsl = asdl_seq_LEN(args); in maybe_optimize_method_call()
4107 ADDOP_I(c, CALL_METHOD, asdl_seq_LEN(e->v.Call.args)); in maybe_optimize_method_call()
4114 Py_ssize_t nkeywords = asdl_seq_LEN(keywords); in validate_keywords()
4160 if (asdl_seq_LEN(e->v.JoinedStr.values) != 1) in compiler_joined_str()
4161 ADDOP_I(c, BUILD_STRING, asdl_seq_LEN(e->v.JoinedStr.values)); in compiler_joined_str()
4260 nelts = asdl_seq_LEN(args); in compiler_call_helper()
4261 nkwelts = asdl_seq_LEN(keywords); in compiler_call_helper()
4437 if (asdl_seq_LEN(elts) == 1) { in compiler_sync_comprehension_generator()
4458 n = asdl_seq_LEN(gen->ifs); in compiler_sync_comprehension_generator()
4466 if (++gen_index < asdl_seq_LEN(generators)) in compiler_sync_comprehension_generator()
4473 if (gen_index >= asdl_seq_LEN(generators)) { in compiler_sync_comprehension_generator()
4550 n = asdl_seq_LEN(gen->ifs); in compiler_async_comprehension_generator()
4559 if (++gen_index < asdl_seq_LEN(generators)) in compiler_async_comprehension_generator()
4566 if (gen_index >= asdl_seq_LEN(generators)) { in compiler_async_comprehension_generator()
4869 if (pos == asdl_seq_LEN(s->v.AsyncWith.items)) in compiler_async_with()
4961 if (pos == asdl_seq_LEN(s->v.With.items)) in compiler_with()
5229 Py_ssize_t i, n = asdl_seq_LEN(elts); in check_ann_subscr()