Home
last modified time | relevance | path

Searched refs:u_ste (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dcompile.c104 PySTEntryObject *u_ste; member
527 Py_CLEAR(u->u_ste); in compiler_unit_free()
556 u->u_ste = PySymtable_Lookup(c->c_st, key); in compiler_enter_scope()
557 if (!u->u_ste) { in compiler_enter_scope()
563 u->u_varnames = list2dict(u->u_ste->ste_varnames); in compiler_enter_scope()
564 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope()
569 if (u->u_ste->ste_needs_class_closure) { in compiler_enter_scope()
594 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope()
701 scope = PyST_GetScope(parent->u_ste, mangled); in compiler_set_qualname()
1571 scope = PyST_GetScope(c->u->u_ste, name); in get_ref_type()
[all …]
/external/python/cpython2/Python/
Dcompile.c98 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 …]