HomeSort by relevance Sort by last modified time
    Searched defs:pollLastEntry (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultiset.java 41 Entry<E> pollLastEntry();
UnmodifiableSortedMultiset.java 87 public Entry<E> pollLastEntry() {
AbstractSortedMultiset.java 90 public Entry<E> pollLastEntry() {
DescendingMultiset.java 59 return forwardMultiset().pollLastEntry();
62 @Override public Entry<E> pollLastEntry() {
  /external/guava/guava/src/com/google/common/collect/
SortedMultiset.java 80 Entry<E> pollLastEntry();
UnmodifiableSortedMultiset.java 89 public Entry<E> pollLastEntry() {
AbstractSortedMultiset.java 90 public Entry<E> pollLastEntry() {
DescendingMultiset.java 59 return forwardMultiset().pollLastEntry();
62 @Override public Entry<E> pollLastEntry() {
ForwardingSortedMultiset.java 172 public Entry<E> pollLastEntry() {
173 return delegate().pollLastEntry();
177 * A sensible definition of {@link #pollLastEntry()} in terms of {@code
181 * {@link #pollLastEntry()} to forward to this implementation.
AbstractNavigableMap.java 61 public Entry<K, V> pollLastEntry() {
ForwardingNavigableMap.java 243 public Entry<K, V> pollLastEntry() {
244 return delegate().pollLastEntry();
ImmutableSortedMultiset.java 363 public final Entry<E> pollLastEntry() {
ImmutableSortedMap.java 646 public final Entry<K, V> pollLastEntry() {
  /libcore/ojluni/src/main/java/java/util/
NavigableMap.java 70 * {@link #pollLastEntry} that return and/or remove the least and
248 Map.Entry<K,V> pollLastEntry();
TreeMap.java 685 public Map.Entry<K,V> pollLastEntry() {
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingNavigableMapTest.java 176 public Entry<K, V> pollLastEntry() {
334 forward().pollLastEntry();
335 assertEquals("[pollLastEntry]", getCalls());
ForwardingSortedMultisetTest.java 89 public Entry<E> pollLastEntry() {
244 forward().pollLastEntry();
245 assertEquals("[pollLastEntry]", getCalls());
SynchronizedNavigableMapTest.java 186 @Override public Entry<K, V> pollLastEntry() {
188 return delegate().pollLastEntry();
357 create().pollLastEntry();
MapsTest.java 828 assertEquals(mapEntry("two", 3), map.pollLastEntry());
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
NavigableMapNavigationTester.java 109 assertNull(navigableMap.pollLastEntry());
144 assertEquals(a, navigableMap.pollLastEntry());
222 assertEquals(c, navigableMap.pollLastEntry());
231 navigableMap.pollLastEntry();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 129 assertNull(sortedMultiset.pollLastEntry());
161 assertEquals(a, sortedMultiset.pollLastEntry());
228 assertEquals(c, sortedMultiset.pollLastEntry());
236 sortedMultiset.pollLastEntry();
  /libcore/luni/src/test/java/libcore/java/util/
TreeMapTest.java 132 assertImmutable(map.pollLastEntry());
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TreeMapTest.java     [all...]
TreeMapExtendTest.java 121 assertNull(treeMap.pollLastEntry());
    [all...]

Completed in 467 milliseconds

1 2 3 4 5 6 7