Lines Matching refs:compiler_nameop
189 static int compiler_nameop(struct compiler *, identifier, expr_context_ty);
1738 compiler_nameop(c, info->fb_datum, Store); in compiler_unwind_fblock()
1739 compiler_nameop(c, info->fb_datum, Del); in compiler_unwind_fblock()
1809 if (!compiler_nameop(c, __doc__, Store)) in compiler_body()
2300 return compiler_nameop(c, name, Store); in compiler_function()
2342 if (!str || !compiler_nameop(c, str, Load)) { in compiler_class()
2350 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class()
2359 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class()
2389 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class()
2432 if (!compiler_nameop(c, s->v.ClassDef.name, Store)) in compiler_class()
3101 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except()
3128 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except()
3129 compiler_nameop(c, handler->v.ExceptHandler.name, Del); in compiler_try_except()
3137 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except()
3138 compiler_nameop(c, handler->v.ExceptHandler.name, Del); in compiler_try_except()
3209 if (!compiler_nameop(c, asname, Store)) { in compiler_import_as()
3215 return compiler_nameop(c, asname, Store); in compiler_import_as()
3252 r = compiler_nameop(c, tmp, Store); in compiler_import()
3318 if (!compiler_nameop(c, store_name, Store)) { in compiler_from_import()
3553 compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx) in compiler_nameop() function
5111 return compiler_nameop(c, e->v.Name.id, e->v.Name.ctx); in compiler_visit_expr1()
5156 if (!compiler_nameop(c, e->v.Name.id, Load)) in compiler_augassign()
5184 return compiler_nameop(c, e->v.Name.id, Store); in compiler_augassign()