Home
last modified time | relevance | path

Searched refs:new_list (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpstats.py302 new_list = list
308 return new_list, msg
309 new_list = []
312 new_list.append(func)
317 new_list = list[:count]
320 new_list = list[:count]
321 if len(list) != len(new_list):
323 len(list), len(new_list), sel)
325 return new_list, msg
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dconnection.c786 PyObject* new_list; in _pysqlite_drop_unused_statement_references() local
797 new_list = PyList_New(0); in _pysqlite_drop_unused_statement_references()
798 if (!new_list) { in _pysqlite_drop_unused_statement_references()
805 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_statement_references()
806 Py_DECREF(new_list); in _pysqlite_drop_unused_statement_references()
813 self->statements = new_list; in _pysqlite_drop_unused_statement_references()
818 PyObject* new_list; in _pysqlite_drop_unused_cursor_references() local
829 new_list = PyList_New(0); in _pysqlite_drop_unused_cursor_references()
830 if (!new_list) { in _pysqlite_drop_unused_cursor_references()
837 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_cursor_references()
[all …]