Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_heapq.py180 self.assertEqual(self.module.nsmallest(n, data), sorted(data)[:n])
181 self.assertEqual(self.module.nsmallest(n, data, key=f),
325 self.module.nlargest, self.module.nsmallest):
333 for f in (self.module.nlargest, self.module.nsmallest):
342 for f in (self.module.nlargest, self.module.nsmallest):
348 self.module.nlargest, self.module.nsmallest):
352 for f in (self.module.nlargest, self.module.nsmallest):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dheapq.py207 def nsmallest(n, iterable): function
355 _nsmallest = nsmallest
356 def nsmallest(n, iterable, key=None): function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dheapq.py221 def nsmallest(n, iterable): function
398 _nsmallest = nsmallest
399 def nsmallest(n, iterable, key=None): function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_heapqmodule.c461 nsmallest(PyObject *self, PyObject *args) in nsmallest() function
557 {"nsmallest", (PyCFunction)nsmallest,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_heapqmodule.c460 nsmallest(PyObject *self, PyObject *args) in nsmallest() function
556 {"nsmallest", (PyCFunction)nsmallest,