Home
last modified time | relevance | path

Searched refs:asdl_seq_LEN (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Python/
Dcompile.c1122 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()
[all …]
Dfuture.c23 for (i = 0; i < asdl_seq_LEN(names); i++) { in future_check_features()
74 for (i = 0; i < asdl_seq_LEN(mod->v.Module.body); i++) { in future_parse()
Dsymtable.c241 for (i = 0; i < asdl_seq_LEN(seq); i++) in PySymtable_Build()
252 for (i = 0; i < asdl_seq_LEN(seq); i++) in PySymtable_Build()
959 for (i = 0; i < asdl_seq_LEN(seq); i++) { \
969 for (i = 0; i < asdl_seq_LEN(seq); i++) { \
981 for (i = (START); i < asdl_seq_LEN(seq); i++) { \
991 for (i = (START); i < asdl_seq_LEN(seq); i++) { \
1140 for (i = 0; i < asdl_seq_LEN(seq); i++) { in symtable_visit_stmt()
1315 for (i = 0; i < asdl_seq_LEN(args); i++) { in symtable_visit_params()
1351 for (i = 0; i < asdl_seq_LEN(args); i++) { in symtable_visit_params_nested()
Dast.c408 if (asdl_seq_LEN(e->v.Tuple.elts)) { in set_context()
479 for (i = 0; i < asdl_seq_LEN(s); i++) { in set_context()
1709 elts = asdl_seq_new(asdl_seq_LEN(slices), c->c_arena); in ast_for_trailer()
1712 for (j = 0; j < asdl_seq_LEN(slices); ++j) { in ast_for_trailer()
2684 (asdl_seq_LEN(expr1->v.Tuple.elts) == 2 || in ast_for_exec_stmt()
2685 asdl_seq_LEN(expr1->v.Tuple.elts) == 3)) { in ast_for_exec_stmt()
2688 if (asdl_seq_LEN(expr1->v.Tuple.elts) == 3) { in ast_for_exec_stmt()
DPython-ast.c549 int i, n = asdl_seq_LEN(seq); in ast2obj_list()
2762 int i, n = asdl_seq_LEN(o->v.Compare.ops); in ast2obj_expr()
/external/python/cpython2/Include/
Dasdl.h34 #define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size) macro