Home
last modified time | relevance | path

Searched refs:VISIT_SEQ (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Python/
Dsymtable.c962 #define VISIT_SEQ(ST, TYPE, SEQ) { \ macro
1014 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt()
1016 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1029 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt()
1031 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
1057 VISIT_SEQ(st, expr, s->v.Delete.targets); in symtable_visit_stmt()
1060 VISIT_SEQ(st, expr, s->v.Assign.targets); in symtable_visit_stmt()
1070 VISIT_SEQ(st, expr, s->v.Print.values); in symtable_visit_stmt()
1075 VISIT_SEQ(st, stmt, s->v.For.body); in symtable_visit_stmt()
1077 VISIT_SEQ(st, stmt, s->v.For.orelse); in symtable_visit_stmt()
[all …]
Dcompile.c1128 #define VISIT_SEQ(C, TYPE, SEQ) { \ macro
1366 VISIT_SEQ(c, expr, args->defaults); in compiler_function()
1421 VISIT_SEQ(c, expr, s->v.ClassDef.bases); in compiler_class()
1507 VISIT_SEQ(c, expr, args->defaults); in compiler_lambda()
1591 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
1593 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if()
1604 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if()
1608 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
1633 VISIT_SEQ(c, stmt, s->v.For.body); in compiler_for()
1638 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for()
[all …]
/external/python/cpython3/Python/
Dsymtable.c1117 #define VISIT_SEQ(ST, TYPE, SEQ) { \ macro
1183 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt()
1190 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1196 VISIT_SEQ(st, stmt, s->v.FunctionDef.body); in symtable_visit_stmt()
1204 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt()
1205 VISIT_SEQ(st, keyword, s->v.ClassDef.keywords); in symtable_visit_stmt()
1207 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
1213 VISIT_SEQ(st, stmt, s->v.ClassDef.body); in symtable_visit_stmt()
1226 VISIT_SEQ(st, expr, s->v.Delete.targets); in symtable_visit_stmt()
1229 VISIT_SEQ(st, expr, s->v.Assign.targets); in symtable_visit_stmt()
[all …]
Dcompile.c1527 #define VISIT_SEQ(C, TYPE, SEQ) { \ macro
1691 VISIT_SEQ(c, stmt, info->fb_datum); in compiler_unwind_fblock()
2127 VISIT_SEQ(c, expr, args->defaults); in compiler_visit_defaults()
2713 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if()
2716 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2719 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if()
2722 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2737 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if()
2741 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2767 VISIT_SEQ(c, stmt, s->v.For.body); in compiler_for()
[all …]