Home
last modified time | relevance | path

Searched refs:ste_symbols (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dsymtable.h28 PyObject *ste_symbols; /* dict: name to flags */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dsymtable.h28 PyObject *ste_symbols; /* dict: name to flags */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dsymtable.c39 ste->ste_symbols = NULL; in ste_new()
43 ste->ste_symbols = PyDict_New(); in ste_new()
44 if (ste->ste_symbols == NULL) in ste_new()
100 Py_XDECREF(ste->ste_symbols); in ste_dealloc()
111 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY},
307 PyObject *v = PyDict_GetItem(ste->ste_symbols, name); in PyST_GetScope()
665 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block()
710 if (!update_symbols(ste->ste_symbols, scope, bound, newfree, in analyze_block()
852 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block()
869 o = PyDict_GetItem(st->st_cur->ste_symbols, mangled); in symtable_lookup()
[all …]
Dcompile.c462 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope()
468 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope()
1253 PyObject_REPR(c->u->u_ste->ste_symbols), in get_ref_type()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dsymtable.c41 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},
309 PyObject *v = PyDict_GetItem(ste->ste_symbols, name); in PyST_GetScope()
667 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block()
712 if (!update_symbols(ste->ste_symbols, scope, bound, newfree, in analyze_block()
854 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block()
871 o = PyDict_GetItem(st->st_cur->ste_symbols, mangled); in symtable_lookup()
[all …]
Dcompile.c485 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()
1276 PyString_AS_STRING(PyObject_Repr(c->u->u_ste->ste_symbols)), in get_ref_type()