Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DPriorityQueue.java551 E moved = PriorityQueue.this.removeAt(lastRet); in remove() local
553 if (moved == null) in remove()
558 forgetMeNot.add(moved); in remove()
619 E moved = (E) queue[s]; in removeAt() local
621 siftDown(i, moved); in removeAt()
622 if (queue[i] == moved) { in removeAt()
623 siftUp(i, moved); in removeAt()
624 if (queue[i] != moved) in removeAt()
625 return moved; in removeAt()
/libcore/luni/src/main/java/java/util/concurrent/
DPriorityBlockingQueue.java602 E moved = (E) array[n]; in removeAt() local
606 siftDownComparable(i, moved, array, n); in removeAt()
608 siftDownUsingComparator(i, moved, array, n, cmp); in removeAt()
609 if (array[i] == moved) { in removeAt()
611 siftUpComparable(i, moved, array); in removeAt()
613 siftUpUsingComparator(i, moved, array, cmp); in removeAt()