Searched refs:compiler_nameop (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | compile.c | 159 static int compiler_nameop(struct compiler *, identifier, expr_context_ty); 1173 if (!compiler_nameop(c, __doc__, Store)) in compiler_body() 1340 if (!compiler_nameop(c, id, Load)) { in compiler_arguments() 1402 return compiler_nameop(c, s->v.FunctionDef.name, Store); in compiler_function() 1429 if (!str || !compiler_nameop(c, str, Load)) { in compiler_class() 1437 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class() 1465 if (!compiler_nameop(c, s->v.ClassDef.name, Store)) in compiler_class() 1906 return compiler_nameop(c, asname, Store); in compiler_import_as() 1953 r = compiler_nameop(c, tmp, Store); in compiler_import() 2029 if (!compiler_nameop(c, store_name, Store)) { in compiler_from_import() [all …]
|
/external/python/cpython3/Python/ |
D | compile.c | 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() [all …]
|