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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
symtable.h 18 PyObject *st_stack; /* stack of namespace info */ member in struct:symtable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
symtable.h 18 PyObject *st_stack; /* stack of namespace info */ member in struct:symtable
  /external/python/cpython2/Include/
symtable.h 18 PyObject *st_stack; /* stack of namespace info */ member in struct:symtable
  /external/python/cpython3/Include/
symtable.h 25 PyObject *st_stack; /* list: stack of namespace info */ member in struct:symtable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 206 if ((st->st_stack = PyList_New(0)) == NULL)
280 Py_XDECREF(st->st_stack);
824 end = PyList_GET_SIZE(st->st_stack) - 1;
826 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack,
831 if (PySequence_DelItem(st->st_stack, end) < 0)
845 if (PyList_Append(st->st_stack, (PyObject *)st->st_cur) < 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 204 if ((st->st_stack = PyList_New(0)) == NULL)
278 Py_XDECREF(st->st_stack);
822 end = PyList_GET_SIZE(st->st_stack) - 1;
824 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack,
829 if (PySequence_DelItem(st->st_stack, end) < 0)
843 if (PyList_Append(st->st_stack, (PyObject *)st->st_cur) < 0) {
    [all...]
  /external/python/cpython2/Python/
symtable.c 208 if ((st->st_stack = PyList_New(0)) == NULL)
282 Py_XDECREF(st->st_stack);
830 end = PyList_GET_SIZE(st->st_stack) - 1;
832 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack,
837 if (PySequence_DelItem(st->st_stack, end) < 0)
851 if (PyList_Append(st->st_stack, (PyObject *)st->st_cur) < 0) {
    [all...]
  /external/python/cpython3/Python/
symtable.c 226 if ((st->st_stack = PyList_New(0)) == NULL)
346 Py_XDECREF(st->st_stack);
927 size = PyList_GET_SIZE(st->st_stack);
929 if (PyList_SetSlice(st->st_stack, size - 1, size, NULL) < 0)
932 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, size - 1);
946 if (PyList_Append(st->st_stack, (PyObject *)ste) < 0) {
    [all...]

Completed in 89 milliseconds