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 | 175 static int compiler_nameop(struct compiler *, identifier, expr_context_ty); 1503 if (!compiler_nameop(c, __doc__, Store)) in compiler_body() 1961 return compiler_nameop(c, name, Store); in compiler_function() 1998 if (!str || !compiler_nameop(c, str, Load)) { in compiler_class() 2006 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class() 2015 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class() 2045 if (!str || !compiler_nameop(c, str, Store)) { in compiler_class() 2088 if (!compiler_nameop(c, s->v.ClassDef.name, Store)) in compiler_class() 2677 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except() 2710 compiler_nameop(c, handler->v.ExceptHandler.name, Store); in compiler_try_except() [all …]
|