Searched refs:VISIT_SEQ (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | symtable.c | 956 #define VISIT_SEQ(ST, TYPE, SEQ) { \ macro 1008 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt() 1010 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt() 1023 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt() 1025 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt() 1051 VISIT_SEQ(st, expr, s->v.Delete.targets); in symtable_visit_stmt() 1054 VISIT_SEQ(st, expr, s->v.Assign.targets); in symtable_visit_stmt() 1064 VISIT_SEQ(st, expr, s->v.Print.values); in symtable_visit_stmt() 1069 VISIT_SEQ(st, stmt, s->v.For.body); in symtable_visit_stmt() 1071 VISIT_SEQ(st, stmt, s->v.For.orelse); in symtable_visit_stmt() [all …]
|
D | compile.c | 1119 #define VISIT_SEQ(C, TYPE, SEQ) { \ macro 1357 VISIT_SEQ(c, expr, args->defaults); in compiler_function() 1412 VISIT_SEQ(c, expr, s->v.ClassDef.bases); in compiler_class() 1498 VISIT_SEQ(c, expr, args->defaults); in compiler_lambda() 1582 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if() 1584 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if() 1595 VISIT_SEQ(c, stmt, s->v.If.body); in compiler_if() 1599 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if() 1624 VISIT_SEQ(c, stmt, s->v.For.body); in compiler_for() 1629 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for() [all …]
|