Searched refs:VISIT_SEQ (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Python/ |
D | symtable.c | 1057 #define VISIT_SEQ(ST, TYPE, SEQ) { \ macro 1123 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt() 1130 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt() 1136 VISIT_SEQ(st, stmt, s->v.FunctionDef.body); in symtable_visit_stmt() 1144 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt() 1145 VISIT_SEQ(st, keyword, s->v.ClassDef.keywords); in symtable_visit_stmt() 1147 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt() 1153 VISIT_SEQ(st, stmt, s->v.ClassDef.body); in symtable_visit_stmt() 1166 VISIT_SEQ(st, expr, s->v.Delete.targets); in symtable_visit_stmt() 1169 VISIT_SEQ(st, expr, s->v.Assign.targets); in symtable_visit_stmt() [all …]
|
D | compile.c | 1345 #define VISIT_SEQ(C, TYPE, SEQ) { \ macro 1841 VISIT_SEQ(c, expr, args->defaults); in compiler_visit_defaults() 2309 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if() 2311 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if() 2322 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if() 2326 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if() 2351 VISIT_SEQ(c, stmt, s->v.For.body); in compiler_for() 2356 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for() 2422 VISIT_SEQ(c, stmt, s->v.AsyncFor.body); in compiler_async_for() 2435 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_async_for() [all …]
|
/external/python/cpython2/Python/ |
D | symtable.c | 962 #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 …]
|
D | compile.c | 1128 #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 …]
|