Home
last modified time | relevance | path

Searched refs:higherEntry (Results 1 – 25 of 30) sorted by relevance

12

/external/guava/android/guava-testlib/src/com/google/common/collect/testing/testers/
DNavigableMapNavigationTester.java100 assertNull(navigableMap.higherEntry(k0())); in testEmptyMapNearby()
135 assertNull(navigableMap.higherEntry(k0())); in testSingletonMapNearby()
208 assertEquals(c, navigableMap.higherEntry(a.getKey())); in testHigher()
210 assertEquals(c, navigableMap.higherEntry(b.getKey())); in testHigher()
212 assertEquals(null, navigableMap.higherEntry(c.getKey())); in testHigher()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DNavigableMapNavigationTester.java100 assertNull(navigableMap.higherEntry(k0())); in testEmptyMapNearby()
135 assertNull(navigableMap.higherEntry(k0())); in testSingletonMapNearby()
208 assertEquals(c, navigableMap.higherEntry(a.getKey())); in testHigher()
210 assertEquals(c, navigableMap.higherEntry(b.getKey())); in testHigher()
212 assertEquals(null, navigableMap.higherEntry(c.getKey())); in testHigher()
/external/guava/guava/src/com/google/common/collect/
DForwardingNavigableMap.java167 public Entry<K, V> higherEntry(@ParametricNullness K key) { in higherEntry() method in ForwardingNavigableMap
168 return delegate().higherEntry(key); in higherEntry()
194 return keyOrNull(higherEntry(key)); in standardHigherKey()
DAbstractNavigableMap.java110 public Entry<K, V> higherEntry(@ParametricNullness K key) { in higherEntry() method in AbstractNavigableMap
135 return Maps.keyOrNull(higherEntry(key)); in higherKey()
DTreeRangeMap.java153 Entry<Cut<K>, RangeMapEntry<K, V>> higherEntry = in coalescedRange() local
155 coalescedRange = coalesce(coalescedRange, value, higherEntry); in coalescedRange()
DImmutableSortedMap.java1058 public Entry<K, V> higherEntry(K key) {
1065 return keyOrNull(higherEntry(key));
DMaps.java2379 public Entry<K, V2> higherEntry(@ParametricNullness K key) {
2380 return transformEntry(fromMap().higherEntry(key));
3591 public Entry<K, V> higherEntry(@ParametricNullness K key) {
3592 return unmodifiableOrNull(delegate.higherEntry(key));
4424 return forward().higherEntry(key);
4459 public Entry<K, V> higherEntry(@ParametricNullness K key) {
DAbstractMapBasedMultimap.java1606 public Entry<K, Collection<V>> higherEntry(@ParametricNullness K key) {
1607 Entry<K, Collection<V>> entry = sortedMap().higherEntry(key);
/external/guava/android/guava/src/com/google/common/collect/
DForwardingNavigableMap.java166 public Entry<K, V> higherEntry(@ParametricNullness K key) { in higherEntry() method in ForwardingNavigableMap
167 return delegate().higherEntry(key); in higherEntry()
193 return keyOrNull(higherEntry(key)); in standardHigherKey()
DAbstractNavigableMap.java110 public Entry<K, V> higherEntry(@ParametricNullness K key) { in higherEntry() method in AbstractNavigableMap
135 return Maps.keyOrNull(higherEntry(key)); in higherKey()
DTreeRangeMap.java151 Entry<Cut<K>, RangeMapEntry<K, V>> higherEntry = in coalescedRange() local
153 coalescedRange = coalesce(coalescedRange, value, higherEntry); in coalescedRange()
DImmutableSortedMap.java1037 public Entry<K, V> higherEntry(K key) {
1044 return keyOrNull(higherEntry(key));
DMaps.java2232 public Entry<K, V2> higherEntry(@ParametricNullness K key) {
2233 return transformEntry(fromMap().higherEntry(key));
3434 public Entry<K, V> higherEntry(@ParametricNullness K key) {
3435 return unmodifiableOrNull(delegate.higherEntry(key));
4183 return forward().higherEntry(key);
4218 public Entry<K, V> higherEntry(@ParametricNullness K key) {
DAbstractMapBasedMultimap.java1561 public Entry<K, Collection<V>> higherEntry(@ParametricNullness K key) {
1562 Entry<K, Collection<V>> entry = sortedMap().higherEntry(key);
/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedNavigableMapTest.java166 public Entry<K, V> higherEntry(K key) { in higherEntry() method in SynchronizedNavigableMapTest.TestMap
168 return delegate().higherEntry(key); in higherEntry()
347 create().higherEntry("a"); in testHigherEntry()
DForwardingNavigableMapTest.java167 public Entry<K, V> higherEntry(K key) { in higherEntry() method
DTreeRangeSetTest.java116 assertEquals(expected.higherEntry(key), navigableMap.higherEntry(key)); in testNavigationAgainstExpected()
/external/guava/android/guava-tests/test/com/google/common/collect/
DSynchronizedNavigableMapTest.java166 public Entry<K, V> higherEntry(K key) { in higherEntry() method in SynchronizedNavigableMapTest.TestMap
168 return delegate().higherEntry(key); in higherEntry()
347 create().higherEntry("a"); in testHigherEntry()
DForwardingNavigableMapTest.java167 public Entry<K, V> higherEntry(K key) { in higherEntry() method
DTreeRangeSetTest.java116 assertEquals(expected.higherEntry(key), navigableMap.higherEntry(key)); in testNavigationAgainstExpected()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSafeTreeMap.java200 public Entry<K, V> higherEntry(K key) {
201 return delegate.higherEntry(checkValid(key));
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DSafeTreeMap.java200 public Entry<K, V> higherEntry(K key) {
201 return delegate.higherEntry(checkValid(key));
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/util/
DAnnotatedBytes.java164 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor); in annotate()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DAnnotatedBytes.java165 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor); in annotate()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMediaPlayer.java896 Entry<Integer, RunList> event = info.events.higherEntry(currentPosition);

12