Searched refs:u_ste (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Python/ |
D | compile.c | 45 && (c->u->u_ste->ste_type == ModuleBlock)) 112 PySTEntryObject *u_ste; member 543 Py_CLEAR(u->u_ste); in compiler_unit_free() 572 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope() 573 if (!u->u_ste) { in compiler_enter_scope() 579 u->u_varnames = list2dict(u->u_ste->ste_varnames); in compiler_enter_scope() 580 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope() 585 if (u->u_ste->ste_needs_class_closure) { in compiler_enter_scope() 604 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope() 710 scope = PyST_GetScope(parent->u_ste, mangled); in compiler_set_qualname() [all …]
|
/external/python/cpython2/Python/ |
D | compile.c | 98 PySTEntryObject *u_ste; member 452 Py_CLEAR(u->u_ste); in compiler_unit_free() 477 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope() 478 if (!u->u_ste) { in compiler_enter_scope() 484 u->u_varnames = list2dict(u->u_ste->ste_varnames); in compiler_enter_scope() 485 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope() 491 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope() 1234 int scope = PyST_GetScope(c->u->u_ste, name); in get_ref_type() 1242 PyString_AS_STRING(PyObject_Repr(c->u->u_ste->ste_id)), in get_ref_type() 1244 PyString_AS_STRING(PyObject_Repr(c->u->u_ste->ste_symbols)), in get_ref_type() [all …]
|