Home
last modified time | relevance | path

Searched refs:heappop (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_heapq.py43 item = self.module.heappop(heap)
55 self.assertRaises(TypeError, self.module.heappop, None)
80 self.module.heappop(heap)
88 yield self.module.heappop(heap)
150 heap_sorted = [self.module.heappop(heap) for i in range(size)]
198 return [self.module.heappop(data).x for i in range(len(data))]
322 for f in (self.module.heapify, self.module.heappop):
329 for f in (self.module.heapify, self.module.heappop):
338 for f in (self.module.heapify, self.module.heappop):
346 for f in (self.module.heapify, self.module.heappop,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsched.py106 pop = heapq.heappop
134 return map(heapq.heappop, [events]*len(events))
Dheapq.py146 def heappop(heap): function
235 return map(heappop, repeat(h, min(n, len(h))))
330 _heappop, _heapreplace, _StopIteration = heappop, heapreplace, StopIteration
438 sort.append(heappop(heap))
DQueue.py227 def _get(self, heappop=heapq.heappop): argument
228 return heappop(self.queue)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dheapq.py145 def heappop(heap): function
368 _heappop, _heapreplace, _StopIteration = heappop, heapreplace, StopIteration
481 sort.append(heappop(heap))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_heapqmodule.c146 heappop(PyObject *self, PyObject *heap) in heappop() function
548 {"heappop", (PyCFunction)heappop,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_heapqmodule.c147 heappop(PyObject *self, PyObject *heap) in heappop() function
549 {"heappop", (PyCFunction)heappop,