HomeSort by relevance Sort by last modified time
    Searched refs:ste_symbols (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
symtable.h 28 PyObject *ste_symbols; /* dict: name to flags */ member in struct:_symtable_entry
75 It is stored in ste_symbols at bits 12-14.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
symtable.h 28 PyObject *ste_symbols; /* dict: name to flags */ member in struct:_symtable_entry
75 It is stored in ste_symbols at bits 12-14.
  /external/python/cpython2/Include/
symtable.h 28 PyObject *ste_symbols; /* dict: name to flags */ member in struct:_symtable_entry
75 It is stored in ste_symbols at bits 12-14.
  /external/python/cpython3/Include/
symtable.h 26 PyObject *st_global; /* borrowed ref to st_top->ste_symbols */
40 PyObject *ste_symbols; /* dict: variable names to flags */ member in struct:_symtable_entry
100 It is stored in ste_symbols at bits 12-15.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 41 ste->ste_symbols = NULL;
45 ste->ste_symbols = PyDict_New();
46 if (ste->ste_symbols == NULL)
102 Py_XDECREF(ste->ste_symbols);
113 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY},
309 PyObject *v = PyDict_GetItem(ste->ste_symbols, name);
667 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) {
712 if (!update_symbols(ste->ste_symbols, scope, bound, newfree,
854 st->st_global = st->st_cur->ste_symbols;
871 o = PyDict_GetItem(st->st_cur->ste_symbols, mangled);
    [all...]
compile.c 485 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0);
491 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 39 ste->ste_symbols = NULL;
43 ste->ste_symbols = PyDict_New();
44 if (ste->ste_symbols == NULL)
100 Py_XDECREF(ste->ste_symbols);
111 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY},
307 PyObject *v = PyDict_GetItem(ste->ste_symbols, name);
665 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) {
710 if (!update_symbols(ste->ste_symbols, scope, bound, newfree,
852 st->st_global = st->st_cur->ste_symbols;
869 o = PyDict_GetItem(st->st_cur->ste_symbols, mangled);
    [all...]
compile.c 462 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0);
468 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS,
    [all...]
  /external/python/cpython2/Python/
symtable.c 41 ste->ste_symbols = NULL;
45 ste->ste_symbols = PyDict_New();
46 if (ste->ste_symbols == NULL)
102 Py_XDECREF(ste->ste_symbols);
113 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY},
311 PyObject *v = PyDict_GetItem(ste->ste_symbols, name);
669 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) {
714 if (!update_symbols(ste->ste_symbols, scope, bound, newfree,
860 st->st_global = st->st_cur->ste_symbols;
877 o = PyDict_GetItem(st->st_cur->ste_symbols, mangled)
    [all...]
compile.c 485 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0);
491 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS,
    [all...]
  /external/python/cpython3/Python/
symtable.c 59 ste->ste_symbols = NULL;
85 ste->ste_symbols = PyDict_New();
88 if (ste->ste_symbols == NULL
116 Py_XDECREF(ste->ste_symbols);
128 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY},
375 PyObject *v = PyDict_GetItem(ste->ste_symbols, name);
593 /* Enter the final scope information into the ste_symbols dict.
764 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) {
834 if (!update_symbols(ste->ste_symbols, scopes, bound, newfree,
955 st->st_global = st->st_cur->ste_symbols;
    [all...]
compile.c 564 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0);
594 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS,
    [all...]

Completed in 152 milliseconds