• Home
  • Raw
  • Download

Lines Matching refs:asdl_seq_LEN

1122     for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \
1132 for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \
1157 if (!asdl_seq_LEN(stmts)) in compiler_body()
1167 for (; i < asdl_seq_LEN(stmts); i++) in compiler_body()
1312 for (i = 0; i < asdl_seq_LEN(decos); i++) { in compiler_decorators()
1322 int n = asdl_seq_LEN(args->args); in compiler_arguments()
1374 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_function()
1375 n = asdl_seq_LEN(s->v.FunctionDef.body); in compiler_function()
1386 compiler_make_closure(c, co, asdl_seq_LEN(args->defaults)); in compiler_function()
1389 for (i = 0; i < asdl_seq_LEN(decos); i++) { in compiler_function()
1410 n = asdl_seq_LEN(s->v.ClassDef.bases); in compiler_class()
1453 for (i = 0; i < asdl_seq_LEN(decos); i++) { in compiler_class()
1510 c->u->u_argcount = asdl_seq_LEN(args->args); in compiler_lambda()
1523 compiler_make_closure(c, co, asdl_seq_LEN(args->defaults)); in compiler_lambda()
1536 n = asdl_seq_LEN(s->v.Print.values); in compiler_print()
1834 n = asdl_seq_LEN(s->v.TryExcept.handlers); in compiler_try_except()
1911 int i, n = asdl_seq_LEN(s->v.Import.names); in compiler_import()
1960 int i, n = asdl_seq_LEN(s->v.ImportFrom.names); in compiler_from_import()
2050 asdl_seq_LEN(s->v.Assert.test->v.Tuple.elts) > 0) { in compiler_assert()
2100 n = asdl_seq_LEN(s->v.Assign.targets); in compiler_visit_stmt()
2453 n = asdl_seq_LEN(s) - 1; in compiler_boolop()
2467 int n = asdl_seq_LEN(e->v.List.elts); in compiler_list()
2481 int n = asdl_seq_LEN(e->v.Tuple.elts); in compiler_tuple()
2500 n = asdl_seq_LEN(e->v.Compare.ops); in compiler_compare()
2543 n = asdl_seq_LEN(e->v.Call.args); in compiler_call()
2547 n |= asdl_seq_LEN(e->v.Call.keywords) << 8; in compiler_call()
2603 n = asdl_seq_LEN(l->ifs); in compiler_listcomp_generator()
2611 if (++gen_index < asdl_seq_LEN(generators)) in compiler_listcomp_generator()
2616 if (gen_index >= asdl_seq_LEN(generators)) { in compiler_listcomp_generator()
2692 n = asdl_seq_LEN(gen->ifs); in compiler_comprehension_generator()
2700 if (++gen_index < asdl_seq_LEN(generators)) in compiler_comprehension_generator()
2707 if (gen_index >= asdl_seq_LEN(generators)) { in compiler_comprehension_generator()
2985 n = asdl_seq_LEN(e->v.Dict.values); in compiler_visit_expr()
2996 n = asdl_seq_LEN(e->v.Set.elts); in compiler_visit_expr()
3370 int i, n = asdl_seq_LEN(s->v.ExtSlice.dims); in compiler_visit_slice()