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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
symtable.h 30 PyObject *ste_varnames; /* list of variable names */ member in struct:_symtable_entry
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
symtable.h 30 PyObject *ste_varnames; /* list of variable names */ member in struct:_symtable_entry
  /external/python/cpython2/Include/
symtable.h 30 PyObject *ste_varnames; /* list of variable names */ member in struct:_symtable_entry
  /external/python/cpython3/Include/
symtable.h 42 PyObject *ste_varnames; /* list of function parameters */ member in struct:_symtable_entry
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 42 ste->ste_varnames = NULL;
49 ste->ste_varnames = PyList_New(0);
50 if (ste->ste_varnames == NULL)
103 Py_XDECREF(ste->ste_varnames);
114 {"varnames", T_OBJECT, OFF(ste_varnames), READONLY},
912 if (PyList_Append(st->st_cur->ste_varnames, mangled) < 0)
    [all...]
compile.c 484 u->u_varnames = list2dict(u->u_ste->ste_varnames);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 40 ste->ste_varnames = NULL;
47 ste->ste_varnames = PyList_New(0);
48 if (ste->ste_varnames == NULL)
101 Py_XDECREF(ste->ste_varnames);
112 {"varnames", T_OBJECT, OFF(ste_varnames), READONLY},
910 if (PyList_Append(st->st_cur->ste_varnames, mangled) < 0)
    [all...]
compile.c 461 u->u_varnames = list2dict(u->u_ste->ste_varnames);
    [all...]
  /external/python/cpython2/Python/
symtable.c 42 ste->ste_varnames = NULL;
49 ste->ste_varnames = PyList_New(0);
50 if (ste->ste_varnames == NULL)
103 Py_XDECREF(ste->ste_varnames);
114 {"varnames", T_OBJECT, OFF(ste_varnames), READONLY},
918 if (PyList_Append(st->st_cur->ste_varnames, mangled) < 0)
    [all...]
compile.c 484 u->u_varnames = list2dict(u->u_ste->ste_varnames);
    [all...]
  /external/python/cpython3/Python/
symtable.c 60 ste->ste_varnames = NULL;
86 ste->ste_varnames = PyList_New(0);
89 || ste->ste_varnames == NULL
117 Py_XDECREF(ste->ste_varnames);
129 {"varnames", T_OBJECT, OFF(ste_varnames), READONLY},
    [all...]
compile.c 563 u->u_varnames = list2dict(u->u_ste->ste_varnames);
    [all...]

Completed in 87 milliseconds