Searched refs:pollLastEntry (Results 1 - 25 of 38) sorted by relevance

12

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSortedMultiset.java41 Entry<E> pollLastEntry(); method in interface:SortedMultiset
H A DDescendingMultiset.java59 return forwardMultiset().pollLastEntry();
62 @Override public Entry<E> pollLastEntry() { method in class:DescendingMultiset
H A DUnmodifiableSortedMultiset.java87 public Entry<E> pollLastEntry() { method in class:UnmodifiableSortedMultiset
H A DAbstractSortedMultiset.java90 public Entry<E> pollLastEntry() { method in class:AbstractSortedMultiset
/external/guava/guava/src/com/google/common/collect/
H A DDescendingMultiset.java59 return forwardMultiset().pollLastEntry();
62 @Override public Entry<E> pollLastEntry() { method in class:DescendingMultiset
H A DSortedMultiset.java80 Entry<E> pollLastEntry(); method in interface:SortedMultiset
H A DForwardingSortedMultiset.java172 public Entry<E> pollLastEntry() { method in class:ForwardingSortedMultiset
173 return delegate().pollLastEntry();
177 * A sensible definition of {@link #pollLastEntry()} in terms of {@code
181 * {@link #pollLastEntry()} to forward to this implementation.
H A DUnmodifiableSortedMultiset.java89 public Entry<E> pollLastEntry() { method in class:UnmodifiableSortedMultiset
H A DAbstractSortedMultiset.java90 public Entry<E> pollLastEntry() { method in class:AbstractSortedMultiset
H A DForwardingNavigableMap.java243 public Entry<K, V> pollLastEntry() { method in class:ForwardingNavigableMap
244 return delegate().pollLastEntry();
H A DAbstractNavigableMap.java61 public Entry<K, V> pollLastEntry() { method in class:AbstractNavigableMap
H A DSortedMultisets.java131 return getElementOrNull(multiset().pollLastEntry());
H A DImmutableSortedMultiset.java363 public final Entry<E> pollLastEntry() { method in class:ImmutableSortedMultiset
H A DMaps.java2048 @Override public Entry<K, V2> pollLastEntry() { method in class:Maps.TransformedEntriesNavigableMap
2049 return transformEntry(fromMap().pollLastEntry());
2991 public Entry<K, V> pollLastEntry() { method in class:Maps.FilteredEntryNavigableMap
3180 public final Entry<K, V> pollLastEntry() { method in class:Maps.UnmodifiableNavigableMap
3610 return keyOrNull(map().pollLastEntry());
3887 return forward().pollLastEntry();
3891 public Entry<K, V> pollLastEntry() { method in class:Maps.DescendingMap
H A DImmutableSortedMap.java646 public final Entry<K, V> pollLastEntry() { method in class:ImmutableSortedMap
H A DSynchronized.java1476 @Override public Entry<K, V> pollLastEntry() { method in class:Synchronized.SynchronizedNavigableMap
1478 return nullableSynchronizedEntry(delegate().pollLastEntry(), mutex);
H A DAbstractMapBasedMultimap.java1492 public Entry<K, Collection<V>> pollLastEntry() { method in class:AbstractMapBasedMultimap.NavigableAsMap
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DNavigableMapNavigationTester.java109 assertNull(navigableMap.pollLastEntry());
144 assertEquals(a, navigableMap.pollLastEntry());
222 assertEquals(c, navigableMap.pollLastEntry());
231 navigableMap.pollLastEntry();
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedMultisetTest.java89 public Entry<E> pollLastEntry() { method in class:ForwardingSortedMultisetTest.StandardImplForwardingSortedMultiset
244 forward().pollLastEntry();
245 assertEquals("[pollLastEntry]", getCalls());
H A DSynchronizedNavigableMapTest.java186 @Override public Entry<K, V> pollLastEntry() { method in class:SynchronizedNavigableMapTest.TestMap
188 return delegate().pollLastEntry();
357 create().pollLastEntry();
H A DForwardingNavigableMapTest.java176 public Entry<K, V> pollLastEntry() { method in class:ForwardingNavigableMapTest.StandardImplForwardingNavigableMap
334 forward().pollLastEntry();
335 assertEquals("[pollLastEntry]", getCalls());
H A DMapsTest.java828 assertEquals(mapEntry("two", 3), map.pollLastEntry());
883 map.subMap("one", false, "zzz", true).pollLastEntry());
1957 unmod.pollLastEntry();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java225 @Override public Entry<K, V> pollLastEntry() { method in class:SafeTreeMap
226 return delegate.pollLastEntry();
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetNavigationTester.java129 assertNull(sortedMultiset.pollLastEntry());
161 assertEquals(a, sortedMultiset.pollLastEntry());
228 assertEquals(c, sortedMultiset.pollLastEntry());
236 sortedMultiset.pollLastEntry();
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...

Completed in 292 milliseconds

12