Searched refs:compiler_nameop (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Python/ |
D | compile.c | 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() [all …]
|
/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 …]
|