Searched refs:moved (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | PriorityQueue.java | 551 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/ojluni/src/main/java/java/util/concurrent/ |
D | PriorityBlockingQueue.java | 631 E moved = (E) array[n]; in removeAt() local 635 siftDownComparable(i, moved, array, n); in removeAt() 637 siftDownUsingComparator(i, moved, array, n, cmp); in removeAt() 638 if (array[i] == moved) { in removeAt() 640 siftUpComparable(i, moved, array); in removeAt() 642 siftUpUsingComparator(i, moved, array, cmp); in removeAt()
|