Lines Matching refs:compiler_nameop
271 static int compiler_nameop(struct compiler *, identifier, expr_context_ty);
1858 compiler_nameop(c, info->fb_datum, Store); in compiler_unwind_fblock()
1859 compiler_nameop(c, info->fb_datum, Del); in compiler_unwind_fblock()
1929 if (!compiler_nameop(c, __doc__, Store)) in compiler_body()
2421 return compiler_nameop(c, name, Store); in compiler_function()
2462 if (!str || !compiler_nameop(c, str, Load)) { in compiler_class()
2470 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class()
2479 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class()
2511 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class()
2555 if (!compiler_nameop(c, s->v.ClassDef.name, Store)) in compiler_class()
3211 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except()
3239 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except()
3240 compiler_nameop(c, handler->v.ExceptHandler.name, Del); in compiler_try_except()
3249 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except()
3250 compiler_nameop(c, handler->v.ExceptHandler.name, Del); in compiler_try_except()
3324 if (!compiler_nameop(c, asname, Store)) { in compiler_import_as()
3330 return compiler_nameop(c, asname, Store); in compiler_import_as()
3368 r = compiler_nameop(c, tmp, Store); in compiler_import()
3434 if (!compiler_nameop(c, store_name, Store)) { in compiler_from_import()
3680 compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx) in compiler_nameop() function
5307 return compiler_nameop(c, e->v.Name.id, e->v.Name.ctx); in compiler_visit_expr1()
5361 if (!compiler_nameop(c, e->v.Name.id, Load)) in compiler_augassign()
5392 return compiler_nameop(c, e->v.Name.id, Store); in compiler_augassign()
6393 if (!compiler_nameop(c, name, Store)) { in compiler_match_inner()