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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
codeobject.c 46 PyObject *varnames, PyObject *freevars, PyObject *cellvars,
59 cellvars == NULL || !PyTuple_Check(cellvars) ||
70 intern_strings(cellvars);
96 Py_INCREF(cellvars);
97 co->co_cellvars = cellvars;
145 nulltuple, /* cellvars */
224 varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])\n\
241 PyObject *cellvars = NULL, *ourcellvars = NULL; local
256 &PyTuple_Type, &cellvars))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
codeobject.c 46 PyObject *varnames, PyObject *freevars, PyObject *cellvars,
59 cellvars == NULL || !PyTuple_Check(cellvars) ||
70 intern_strings(cellvars);
96 Py_INCREF(cellvars);
97 co->co_cellvars = cellvars;
145 nulltuple, /* cellvars */
224 varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])\n\
241 PyObject *cellvars = NULL, *ourcellvars = NULL; local
256 &PyTuple_Type, &cellvars))
    [all...]
  /external/python/cpython2/Objects/
codeobject.c 95 PyObject *varnames, PyObject *freevars, PyObject *cellvars,
107 cellvars == NULL || !PyTuple_Check(cellvars) ||
118 intern_strings(cellvars);
136 Py_INCREF(cellvars);
137 co->co_cellvars = cellvars;
185 nulltuple, /* cellvars */
264 varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])\n\
281 PyObject *cellvars = NULL, *ourcellvars = NULL; local
296 &PyTuple_Type, &cellvars))
    [all...]
  /external/python/cpython3/Objects/
codeobject.c 100 PyObject *varnames, PyObject *freevars, PyObject *cellvars,
115 cellvars == NULL || !PyTuple_Check(cellvars) ||
130 intern_strings(cellvars);
134 n_cellvars = PyTuple_GET_SIZE(cellvars);
166 PyObject *cell = PyTuple_GET_ITEM(cellvars, i);
208 Py_INCREF(cellvars);
209 co->co_cellvars = cellvars;
259 nulltuple, /* cellvars */
338 lnotab[, freevars[, cellvars]])\n
356 PyObject *cellvars = NULL, *ourcellvars = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 274 self.cellvars = []
303 self.cellvars = names
420 """Sort cellvars in the order of varnames and prune from freevars.
423 for name in self.cellvars:
425 self.cellvars = [name for name in self.varnames
427 for name in self.cellvars:
429 self.cellvars = self.cellvars + cells.keys()
430 self.closure = self.cellvars + self.freevars
544 tuple(self.cellvars))
    [all...]
  /external/python/cpython2/Lib/compiler/
pyassem.py 274 self.cellvars = []
303 self.cellvars = names
420 """Sort cellvars in the order of varnames and prune from freevars.
423 for name in self.cellvars:
425 self.cellvars = [name for name in self.varnames
427 for name in self.cellvars:
429 self.cellvars = self.cellvars + cells.keys()
430 self.closure = self.cellvars + self.freevars
544 tuple(self.cellvars))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_new.py 124 cellvars = c.co_cellvars
128 firstlineno, lnotab, freevars, cellvars)
130 # test backwards-compatibility version with no freevars or cellvars
  /external/python/cpython2/Lib/test/
test_new.py 124 cellvars = c.co_cellvars
128 firstlineno, lnotab, freevars, cellvars)
130 # test backwards-compatibility version with no freevars or cellvars
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
marshal.c 1009 PyObject *cellvars = NULL; local
1037 cellvars = r_object(p);
1038 if (cellvars == NULL)
1054 freevars, cellvars, filename, name,
1063 Py_XDECREF(cellvars);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
marshal.c 1014 PyObject *cellvars = NULL; local
1042 cellvars = r_object(p);
1043 if (cellvars == NULL)
1059 freevars, cellvars, filename, name,
1068 Py_XDECREF(cellvars);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
marshal.c 1009 PyObject *cellvars = NULL; local
1037 cellvars = r_object(p);
1038 if (cellvars == NULL)
1054 freevars, cellvars, filename, name,
1063 Py_XDECREF(cellvars);
    [all...]
compile.c 3829 PyObject *cellvars = NULL; local
    [all...]
  /external/python/cpython2/Python/
marshal.c 1014 PyObject *cellvars = NULL; local
1042 cellvars = r_object(p);
1043 if (cellvars == NULL)
1059 freevars, cellvars, filename, name,
1068 Py_XDECREF(cellvars);
    [all...]
compile.c 3815 PyObject *cellvars = NULL; local
    [all...]
  /external/python/cpython3/Python/
marshal.c 1371 PyObject *cellvars = NULL; local
    [all...]
compile.c 5377 PyObject *cellvars = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 3853 PyObject *cellvars = NULL; local
    [all...]

Completed in 4228 milliseconds