Home
last modified time | relevance | path

Searched refs:listitems (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpickle.py346 listitems=None, dictitems=None, obj=None): argument
412 if listitems is not None:
413 self._batch_appends(listitems)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
DcPickle.c2389 PyObject *listitems = Py_None; in save_reduce() local
2411 &listitems, in save_reduce()
2425 if (listitems == Py_None) in save_reduce()
2426 listitems = NULL; in save_reduce()
2427 else if (!PyIter_Check(listitems)) { in save_reduce()
2430 "Os", fn, Py_TYPE(listitems)->tp_name); in save_reduce()
2545 if (listitems && batch_list(self, listitems) < 0) in save_reduce()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
DcPickle.c2357 PyObject *listitems = Py_None; in save_reduce() local
2379 &listitems, in save_reduce()
2393 if (listitems == Py_None) in save_reduce()
2394 listitems = NULL; in save_reduce()
2395 else if (!PyIter_Check(listitems)) { in save_reduce()
2398 "Os", fn, Py_TYPE(listitems)->tp_name); in save_reduce()
2513 if (listitems && batch_list(self, listitems) < 0) in save_reduce()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dtypeobject.c3177 PyObject *slots = NULL, *listitems = NULL, *dictitems = NULL; in reduce_2() local
3254 listitems = Py_None; in reduce_2()
3255 Py_INCREF(listitems); in reduce_2()
3258 listitems = PyObject_GetIter(obj); in reduce_2()
3259 if (listitems == NULL) in reduce_2()
3292 res = PyTuple_Pack(5, newobj, args2, state, listitems, dictitems); in reduce_2()
3301 Py_XDECREF(listitems); in reduce_2()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dtypeobject.c3210 PyObject *slots = NULL, *listitems = NULL, *dictitems = NULL; in reduce_2() local
3287 listitems = Py_None; in reduce_2()
3288 Py_INCREF(listitems); in reduce_2()
3291 listitems = PyObject_GetIter(obj); in reduce_2()
3292 if (listitems == NULL) in reduce_2()
3325 res = PyTuple_Pack(5, newobj, args2, state, listitems, dictitems); in reduce_2()
3334 Py_XDECREF(listitems); in reduce_2()