Lines Matching refs:FunctionDef
1198 if (!symtable_add_def(st, s->v.FunctionDef.name, DEF_LOCAL, LOCATION(s))) in symtable_visit_stmt()
1200 if (s->v.FunctionDef.args->defaults) in symtable_visit_stmt()
1201 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt()
1202 if (s->v.FunctionDef.args->kw_defaults) in symtable_visit_stmt()
1203 VISIT_SEQ_WITH_NULL(st, expr, s->v.FunctionDef.args->kw_defaults); in symtable_visit_stmt()
1204 if (!symtable_visit_annotations(st, s, s->v.FunctionDef.args, in symtable_visit_stmt()
1205 s->v.FunctionDef.returns)) in symtable_visit_stmt()
1207 if (s->v.FunctionDef.decorator_list) in symtable_visit_stmt()
1208 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1209 if (!symtable_enter_block(st, s->v.FunctionDef.name, in symtable_visit_stmt()
1213 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt()
1214 VISIT_SEQ(st, stmt, s->v.FunctionDef.body); in symtable_visit_stmt()