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

1 2 3 4 5 6 7

  /libcore/ojluni/src/main/java/java/util/
NavigableMap.java 46 * and {@link #higherEntry} return {@code Map.Entry} objects
198 Map.Entry<K,V> higherEntry(K key);
TreeMap.java 766 public Map.Entry<K,V> higherEntry(K key) {
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractNavigableMap.java 105 public Entry<K, V> higherEntry(K key) {
126 return Maps.keyOrNull(higherEntry(key));
ForwardingNavigableMap.java 146 public Entry<K, V> higherEntry(K key) {
147 return delegate().higherEntry(key);
151 * A sensible definition of {@link #higherEntry} in terms of the {@code firstEntry()} of
153 * {@code higherEntry} to forward to this implementation.
165 * A sensible definition of {@link #higherKey} in terms of {@code higherEntry}. If you override
166 * {@code higherEntry}, you may wish to override {@code higherKey} to forward to this
170 return keyOrNull(higherEntry(key));
ImmutableSortedMap.java 607 public Entry<K, V> higherEntry(K key) {
613 return keyOrNull(higherEntry(key));
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingNavigableMapTest.java 151 public Entry<K, V> higherEntry(K key) {
319 forward().higherEntry("key");
320 assertEquals("[higherEntry(Object)]", getCalls());
TreeRangeSetTest.java 115 assertEquals(expected.higherEntry(key), navigableMap.higherEntry(key));
SynchronizedNavigableMapTest.java 151 @Override public Entry<K, V> higherEntry(K key) {
153 return delegate().higherEntry(key);
319 create().higherEntry("a");
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
NavigableMapNavigationTester.java 97 assertNull(navigableMap.higherEntry(samples.e0.getKey()));
132 assertNull(navigableMap.higherEntry(samples.e0.getKey()));
206 assertEquals(c, navigableMap.higherEntry(a.getKey()));
208 assertEquals(c, navigableMap.higherEntry(b.getKey()));
210 assertEquals(null, navigableMap.higherEntry(c.getKey()));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TreeMapExtendTest.java 115 assertNull(treeMap.higherEntry(1));
149 assertEquals(tm.higherEntry(key), treeMap.higherEntry(key));
    [all...]
TreeMapTest.java     [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java     [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.2/
haha-2.0.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.31/
truth-0.31.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.34/
truth-0.34.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.36/
truth-0.36.jar 
  /external/dagger2/lib/
auto-value-1.4.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/
auto-value-1.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3-rc1/
auto-value-1.3-rc1.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.5.2/
auto-value-1.5.2.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.6-android/
guava-23.6-android.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar 

Completed in 307 milliseconds

1 2 3 4 5 6 7