/libcore/ojluni/src/main/java/java/util/ |
NavigableMap.java | 45 * and {@link #higherEntry} return {@code Map.Entry} objects 197 Map.Entry<K,V> higherEntry(K key);
|
TreeMap.java | 790 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));
|
AbstractMapBasedMultimap.java | [all...] |
Maps.java | [all...] |
Synchronized.java | [all...] |
/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()));
|
/external/guava/guava-tests/test/com/google/common/collect/ |
SynchronizedNavigableMapTest.java | 151 @Override public Entry<K, V> higherEntry(K key) { 153 return delegate().higherEntry(key); 319 create().higherEntry("a");
|
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));
|
MapsTest.java | 805 assertEquals(mapEntry("three", 5), map.higherEntry("one")); [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
SafeTreeMap.java | 185 @Override public Entry<K, V> higherEntry(K key) { 186 return delegate.higherEntry(checkValid(key));
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
TreeSubMapTest.java | 263 * higherEntry returns next entry. 267 Map.Entry e1 = map.higherEntry(three); 270 Map.Entry e2 = map.higherEntry(zero); 273 Map.Entry e3 = map.higherEntry(five); 276 Map.Entry e4 = map.higherEntry(six); 815 * higherEntry returns next entry. 819 Map.Entry e1 = map.higherEntry(m3); 822 Map.Entry e2 = map.higherEntry(zero); 825 Map.Entry e3 = map.higherEntry(m5); 828 Map.Entry e4 = map.higherEntry(m6) [all...] |
ConcurrentSkipListSubMapTest.java | 376 * higherEntry returns next entry. 380 Map.Entry e1 = map.higherEntry(three); 383 Map.Entry e2 = map.higherEntry(zero); 386 Map.Entry e3 = map.higherEntry(five); 389 Map.Entry e4 = map.higherEntry(six); 1050 * higherEntry returns next entry. 1054 Map.Entry e1 = map.higherEntry(m3); 1057 Map.Entry e2 = map.higherEntry(zero); 1060 Map.Entry e3 = map.higherEntry(m5); 1063 Map.Entry e4 = map.higherEntry(m6) [all...] |
ConcurrentSkipListMapTest.java | 464 * higherEntry returns next entry. 468 Map.Entry e1 = map.higherEntry(three); 471 Map.Entry e2 = map.higherEntry(zero); 474 Map.Entry e3 = map.higherEntry(five); 477 Map.Entry e4 = map.higherEntry(six); 518 * lowerEntry, higherEntry, ceilingEntry, and floorEntry return 529 e = map.higherEntry(zero); [all...] |
TreeMapTest.java | 377 * higherEntry returns next entry. 381 Map.Entry e1 = map.higherEntry(three); 384 Map.Entry e2 = map.higherEntry(zero); 387 Map.Entry e3 = map.higherEntry(five); 390 Map.Entry e4 = map.higherEntry(six); [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
AnnotatedBytes.java | 165 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
TreeMapTest.java | [all...] |
TreeMapExtendTest.java | 115 assertNull(treeMap.higherEntry(1)); 149 assertEquals(tm.higherEntry(key), treeMap.higherEntry(key)); [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
TreeMapTest.java | 127 assertImmutable(map.higherEntry("A"));
|
/prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/ |
backport-util-concurrent-3.1.jar | |
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentSkipListMap.java | [all...] |
/prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.2/ |
haha-2.0.2.jar | |