Searched refs:pollLastEntry (Results 1 – 10 of 10) sorted by relevance
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | MapNavigationTester.java | 120 assertNull(navigableMap.pollLastEntry()); in testEmptyMapPollLast() 157 assertEquals(a, navigableMap.pollLastEntry()); in testSingletonMapPollLast() 237 assertEquals(c, navigableMap.pollLastEntry()); in testPollLast() 246 navigableMap.pollLastEntry(); in testPollLastUnsupported()
|
/external/guava/guava/src/com/google/common/collect/ |
D | SortedMultisets.java | 114 return forwardMultiset().pollLastEntry(); in pollFirstEntry() 117 @Override public Entry<E> pollLastEntry() { in pollLastEntry() method
|
D | SortedMultiset.java | 73 Entry<E> pollLastEntry(); in pollLastEntry() method
|
D | AbstractSortedMultiset.java | 93 public Entry<E> pollLastEntry() {
|
D | ImmutableSortedMultiset.java | 395 public Entry<E> pollLastEntry() { in pollLastEntry() method in ImmutableSortedMultiset
|
D | Multisets.java | 255 public Entry<E> pollLastEntry() { in pollLastEntry() method in Multisets.UnmodifiableSortedMultiset
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | SafeTreeMap.java | 188 @Override public Entry<K, V> pollLastEntry() { in pollLastEntry() method in SafeTreeMap 189 return delegate.pollLastEntry(); in pollLastEntry()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | MultisetNavigationTester.java | 129 assertNull(sortedMultiset.pollLastEntry()); in testEmptyMultisetPollLast() 161 assertEquals(a, sortedMultiset.pollLastEntry()); in testSingletonMultisetPollLast() 228 assertEquals(c, sortedMultiset.pollLastEntry()); in testPollLast() 236 sortedMultiset.pollLastEntry(); in testPollLastUnsupported()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | TreeMapTest.java | 997 assertEquals(objArray[999].toString(), tm.pollLastEntry().getKey()); in test_pollLastEntry() 998 assertEquals(objArray[998], tm.pollLastEntry().getValue()); in test_pollLastEntry() 999 assertEquals(objArray[997], tm.pollLastEntry().getValue()); in test_pollLastEntry() 1001 assertEquals(objArray[996], tm.pollLastEntry().getValue()); in test_pollLastEntry() 1003 assertEquals(testint9999.toString(), tm.pollLastEntry().getKey()); in test_pollLastEntry() 1004 Entry entry = tm.pollLastEntry(); in test_pollLastEntry() 1008 assertNull(tm.pollLastEntry()); in test_pollLastEntry()
|
D | TreeMapExtendTest.java | 123 assertNull(treeMap.pollLastEntry()); in test_TreeMap_Constructor_Default() 1721 .pollLastEntry().getValue()); in test_AscendingSubMap_pollLastEntry() 1723 .pollLastEntry().getValue()); in test_AscendingSubMap_pollLastEntry() 1725 .pollLastEntry().getValue()); in test_AscendingSubMap_pollLastEntry() 1727 .pollLastEntry().getValue()); in test_AscendingSubMap_pollLastEntry() 2371 assertEquals(0, decendingMap.pollLastEntry().getValue()); in test_DescendingSubMap_pollLastEntry() 2374 assertEquals(101, decendingMap.pollLastEntry().getValue()); in test_DescendingSubMap_pollLastEntry() 2377 assertEquals(102, decendingMap.pollLastEntry().getValue()); in test_DescendingSubMap_pollLastEntry() 2380 assertEquals(100, decendingMap.pollLastEntry().getValue()); in test_DescendingSubMap_pollLastEntry() 2383 assertEquals(103, decendingMap.pollLastEntry().getValue()); in test_DescendingSubMap_pollLastEntry()
|