Home
last modified time | relevance | path

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

/third_party/python/Python/
Dsymtable.c1145 #define VISIT_SEQ(ST, TYPE, SEQ) { \ macro
1212 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt()
1219 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1225 VISIT_SEQ(st, stmt, s->v.FunctionDef.body); in symtable_visit_stmt()
1233 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt()
1234 VISIT_SEQ(st, keyword, s->v.ClassDef.keywords); in symtable_visit_stmt()
1236 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
1243 VISIT_SEQ(st, stmt, s->v.ClassDef.body); in symtable_visit_stmt()
1256 VISIT_SEQ(st, expr, s->v.Delete.targets); in symtable_visit_stmt()
1259 VISIT_SEQ(st, expr, s->v.Assign.targets); in symtable_visit_stmt()
[all …]
Dcompile.c1642 #define VISIT_SEQ(C, TYPE, SEQ) { \ macro
1801 VISIT_SEQ(c, stmt, info->fb_datum); in compiler_unwind_fblock()
2236 VISIT_SEQ(c, expr, args->defaults); in compiler_visit_defaults()
2848 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if()
2852 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
2879 VISIT_SEQ(c, stmt, s->v.For.body); in compiler_for()
2887 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for()
2926 VISIT_SEQ(c, stmt, s->v.AsyncFor.body); in compiler_async_for()
2940 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_async_for()
2967 VISIT_SEQ(c, stmt, s->v.While.body); in compiler_while()
[all …]