/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | NavigableMapNavigationTester.java | 109 assertNull(navigableMap.pollLastEntry()); in testEmptyMapPollLast() 144 assertEquals(a, navigableMap.pollLastEntry()); in testSingletonMapPollLast() 222 assertEquals(c, navigableMap.pollLastEntry()); in testPollLast() 231 navigableMap.pollLastEntry(); in testPollLastUnsupported()
|
/external/guava/guava/src/com/google/common/collect/ |
D | DescendingMultiset.java | 59 return forwardMultiset().pollLastEntry(); in pollFirstEntry() 62 @Override public Entry<E> pollLastEntry() { in pollLastEntry() method in DescendingMultiset
|
D | ForwardingSortedMultiset.java | 172 public Entry<E> pollLastEntry() { in pollLastEntry() method in ForwardingSortedMultiset 173 return delegate().pollLastEntry(); in pollLastEntry()
|
D | SortedMultiset.java | 80 Entry<E> pollLastEntry(); in pollLastEntry() method
|
D | ForwardingNavigableMap.java | 243 public Entry<K, V> pollLastEntry() { in pollLastEntry() method in ForwardingNavigableMap 244 return delegate().pollLastEntry(); in pollLastEntry()
|
D | UnmodifiableSortedMultiset.java | 89 public Entry<E> pollLastEntry() { in pollLastEntry() method in UnmodifiableSortedMultiset
|
D | AbstractSortedMultiset.java | 90 public Entry<E> pollLastEntry() { in pollLastEntry() method in AbstractSortedMultiset
|
D | SortedMultisets.java | 131 return getElementOrNull(multiset().pollLastEntry()); in pollLast()
|
D | AbstractNavigableMap.java | 61 public Entry<K, V> pollLastEntry() { in pollLastEntry() method in AbstractNavigableMap
|
D | Maps.java | 2048 @Override public Entry<K, V2> pollLastEntry() { 2049 return transformEntry(fromMap().pollLastEntry()); 2991 public Entry<K, V> pollLastEntry() { 3180 public final Entry<K, V> pollLastEntry() { 3610 return keyOrNull(map().pollLastEntry()); 3887 return forward().pollLastEntry(); 3891 public Entry<K, V> pollLastEntry() {
|
D | ImmutableSortedMultiset.java | 363 public final Entry<E> pollLastEntry() { in pollLastEntry() method in ImmutableSortedMultiset
|
D | ImmutableSortedMap.java | 646 public final Entry<K, V> pollLastEntry() { in pollLastEntry() method in ImmutableSortedMap
|
D | Synchronized.java | 1476 @Override public Entry<K, V> pollLastEntry() { 1478 return nullableSynchronizedEntry(delegate().pollLastEntry(), mutex);
|
D | AbstractMapBasedMultimap.java | 1492 public Entry<K, Collection<V>> pollLastEntry() {
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | DescendingMultiset.java | 59 return forwardMultiset().pollLastEntry(); in pollFirstEntry() 62 @Override public Entry<E> pollLastEntry() { in pollLastEntry() method in DescendingMultiset
|
D | SortedMultiset.java | 41 Entry<E> pollLastEntry(); in pollLastEntry() method
|
D | UnmodifiableSortedMultiset.java | 87 public Entry<E> pollLastEntry() { in pollLastEntry() method in UnmodifiableSortedMultiset
|
D | AbstractSortedMultiset.java | 90 public Entry<E> pollLastEntry() { in pollLastEntry() method in AbstractSortedMultiset
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ForwardingSortedMultisetTest.java | 89 public Entry<E> pollLastEntry() { in pollLastEntry() method 244 forward().pollLastEntry();
|
D | SynchronizedNavigableMapTest.java | 186 @Override public Entry<K, V> pollLastEntry() { in pollLastEntry() method in SynchronizedNavigableMapTest.TestMap 188 return delegate().pollLastEntry(); in pollLastEntry() 357 create().pollLastEntry(); in testPollLastEntry()
|
D | ForwardingNavigableMapTest.java | 176 public Entry<K, V> pollLastEntry() { in pollLastEntry() method 334 forward().pollLastEntry();
|
D | MapsTest.java | 828 assertEquals(mapEntry("two", 3), map.pollLastEntry()); in testAsMapNavigable() 883 map.subMap("one", false, "zzz", true).pollLastEntry()); in testAsMapNavigableWritesThrough() 1957 unmod.pollLastEntry();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | SafeTreeMap.java | 225 @Override public Entry<K, V> pollLastEntry() { 226 return delegate.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()
|