Home
last modified time | relevance | path

Searched refs:pollLastEntry (Results 1 – 17 of 17) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DTreeSubMapTest.java351 Map.Entry e = map.pollLastEntry();
354 e = map.pollLastEntry();
357 e = map.pollLastEntry();
360 e = map.pollLastEntry();
363 e = map.pollLastEntry();
369 e = map.pollLastEntry();
900 Map.Entry e = map.pollLastEntry();
903 e = map.pollLastEntry();
906 e = map.pollLastEntry();
909 e = map.pollLastEntry();
[all …]
DConcurrentSkipListSubMapTest.java461 Map.Entry e = map.pollLastEntry();
464 e = map.pollLastEntry();
467 e = map.pollLastEntry();
470 e = map.pollLastEntry();
473 e = map.pollLastEntry();
479 e = map.pollLastEntry();
1135 Map.Entry e = map.pollLastEntry();
1138 e = map.pollLastEntry();
1141 e = map.pollLastEntry();
1144 e = map.pollLastEntry();
[all …]
DTreeMapTest.java534 Map.Entry e = map.pollLastEntry();
537 e = map.pollLastEntry();
540 e = map.pollLastEntry();
543 e = map.pollLastEntry();
546 e = map.pollLastEntry();
552 e = map.pollLastEntry();
DConcurrentSkipListMapTest.java653 Map.Entry e = map.pollLastEntry();
656 e = map.pollLastEntry();
659 e = map.pollLastEntry();
662 e = map.pollLastEntry();
665 e = map.pollLastEntry();
671 e = map.pollLastEntry();
/libcore/ojluni/src/test/java/util/concurrent/tck/
DTreeSubMapTest.java374 Map.Entry e = map.pollLastEntry();
377 e = map.pollLastEntry();
380 e = map.pollLastEntry();
383 e = map.pollLastEntry();
386 e = map.pollLastEntry();
392 e = map.pollLastEntry();
923 Map.Entry e = map.pollLastEntry();
926 e = map.pollLastEntry();
929 e = map.pollLastEntry();
932 e = map.pollLastEntry();
[all …]
DConcurrentSkipListSubMapTest.java484 Map.Entry e = map.pollLastEntry();
487 e = map.pollLastEntry();
490 e = map.pollLastEntry();
493 e = map.pollLastEntry();
496 e = map.pollLastEntry();
502 e = map.pollLastEntry();
1158 Map.Entry e = map.pollLastEntry();
1161 e = map.pollLastEntry();
1164 e = map.pollLastEntry();
1167 e = map.pollLastEntry();
[all …]
DTreeMapTest.java557 Map.Entry e = map.pollLastEntry();
560 e = map.pollLastEntry();
563 e = map.pollLastEntry();
566 e = map.pollLastEntry();
569 e = map.pollLastEntry();
575 e = map.pollLastEntry();
DConcurrentSkipListMapTest.java676 Map.Entry e = map.pollLastEntry();
679 e = map.pollLastEntry();
682 e = map.pollLastEntry();
685 e = map.pollLastEntry();
688 e = map.pollLastEntry();
694 e = map.pollLastEntry();
/libcore/ojluni/src/main/java/java/util/
DTreeSet.java462 Map.Entry<E,?> e = m.pollLastEntry(); in pollLast()
DCollections.java1983 public Entry<K, V> pollLastEntry()
2937 public Entry<K, V> pollLastEntry()
2938 { synchronized (mutex) { return nm.pollLastEntry(); } }
4163 public Entry<K, V> pollLastEntry() {
4164 Entry<K,V> entry = nm.pollLastEntry();
DTreeMap.java685 public Map.Entry<K,V> pollLastEntry() { in pollLastEntry() method in TreeMap
1152 Map.Entry<E,?> e = m.pollLastEntry(); in pollLast()
1590 public final Map.Entry<K,V> pollLastEntry() { in pollLastEntry() method in TreeMap.NavigableSubMap
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListSet.java383 Map.Entry<E,Object> e = m.pollLastEntry(); in pollLast()
DConcurrentSkipListMap.java2257 public Map.Entry<K,V> pollLastEntry() { in pollLastEntry() method in ConcurrentSkipListMap
2380 Map.Entry<K,V> e = m.pollLastEntry(); in pollLast()
3045 public Map.Entry<K,V> pollLastEntry() { in pollLastEntry() method in ConcurrentSkipListMap.SubMap
/libcore/ojluni/annotations/sdk/nullability/java/util/
DNavigableMap.annotated.java65 …il.Map.Entry<@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> pollLastEntry(); in pollLastEntry() method
DTreeMap.annotated.java72 …@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> pollLastEntry() { throw new … in pollLastEntry() method in TreeMap
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DTreeMapTest.java965 assertEquals(objArray[999].toString(), tm.pollLastEntry().getKey()); in test_pollLastEntry()
966 assertEquals(objArray[998], tm.pollLastEntry().getValue()); in test_pollLastEntry()
967 assertEquals(objArray[997], tm.pollLastEntry().getValue()); in test_pollLastEntry()
969 assertEquals(objArray[996], tm.pollLastEntry().getValue()); in test_pollLastEntry()
971 assertEquals(testint9999.toString(), tm.pollLastEntry().getKey()); in test_pollLastEntry()
972 Entry entry = tm.pollLastEntry(); in test_pollLastEntry()
976 assertNull(tm.pollLastEntry()); in test_pollLastEntry()
/libcore/luni/src/test/java/libcore/java/util/
DTreeMapTest.java132 assertImmutable(map.pollLastEntry()); in assertAllEntryMethodsReturnImmutableEntries()