Lines Matching refs:u_ste
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()
1521 if (c->u->u_ste->ste_generator) { in compiler_lambda()
2089 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_stmt()
2330 scope = PyST_GetScope(c->u->u_ste, mangled); in compiler_nameop()
2341 if (c->u->u_ste->ste_type == FunctionBlock) in compiler_nameop()
2345 if (c->u->u_ste->ste_type == FunctionBlock && in compiler_nameop()
2346 !c->u->u_ste->ste_unoptimized) in compiler_nameop()
3010 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_expr()
3769 PySTEntryObject *ste = c->u->u_ste; in compute_code_flags()