Searched refs:ste_symbols (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Python/ |
D | symtable.c | 41 ste->ste_symbols = NULL; in ste_new() 45 ste->ste_symbols = PyDict_New(); in ste_new() 46 if (ste->ste_symbols == NULL) in ste_new() 102 Py_XDECREF(ste->ste_symbols); in ste_dealloc() 113 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY}, 311 PyObject *v = PyDict_GetItem(ste->ste_symbols, name); in PyST_GetScope() 669 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block() 714 if (!update_symbols(ste->ste_symbols, scope, bound, newfree, in analyze_block() 860 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block() 877 o = PyDict_GetItem(st->st_cur->ste_symbols, mangled); in symtable_lookup() [all …]
|
D | compile.c | 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() 1244 PyString_AS_STRING(PyObject_Repr(c->u->u_ste->ste_symbols)), in get_ref_type()
|
/external/python/cpython2/Include/ |
D | symtable.h | 28 PyObject *ste_symbols; /* dict: name to flags */ member
|
/external/python/cpython3/Python/ |
D | symtable.c | 80 ste->ste_symbols = NULL; in ste_new() 111 ste->ste_symbols = PyDict_New(); in ste_new() 114 if (ste->ste_symbols == NULL in ste_new() 142 Py_XDECREF(ste->ste_symbols); in ste_dealloc() 154 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY}, 404 PyObject *v = PyDict_GetItemWithError(ste->ste_symbols, name); in _PyST_GetSymbol() 805 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block() 875 if (!update_symbols(ste->ste_symbols, scopes, bound, newfree, in analyze_block() 1012 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block() 1045 dict = ste->ste_symbols; in symtable_add_def_helper() [all …]
|
D | compile.c | 634 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope() 658 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope() 2001 c->u->u_ste->ste_symbols, c->u->u_varnames, c->u->u_names); in get_ref_type()
|
/external/python/cpython3/Include/internal/ |
D | pycore_symtable.h | 47 PyObject *ste_symbols; /* dict: variable names to flags */ member
|
/external/python/cpython3/Doc/data/ |
D | python3.10.abi | 18093 …<var-decl name='ste_symbols' type-id='type-id-16' visibility='default' filepath='./Include/interna…
|