Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 22 for lowerEntry (0.06 seconds)

  1. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return (NavigableMap<K, Collection<V>>) super.sortedMap();
        }
    
        @Override
        public @Nullable Entry<K, Collection<V>> lowerEntry(@ParametricNullness K key) {
          Entry<K, Collection<V>> entry = sortedMap().lowerEntry(key);
          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        public @Nullable K lowerKey(@ParametricNullness K key) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Aug 12 15:51:57 GMT 2025
    - 46.9K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return (NavigableMap<K, Collection<V>>) super.sortedMap();
        }
    
        @Override
        public @Nullable Entry<K, Collection<V>> lowerEntry(@ParametricNullness K key) {
          Entry<K, Collection<V>> entry = sortedMap().lowerEntry(key);
          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        public @Nullable K lowerKey(@ParametricNullness K key) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

        return getSubMap(keySet.tailIndex(checkNotNull(fromKey), inclusive), size());
      }
    
      @Override
      public @Nullable Entry<K, V> lowerEntry(K key) {
        return headMap(key, false).lastEntry();
      }
    
      @Override
      public @Nullable K lowerKey(K key) {
        return keyOrNull(lowerEntry(key));
      }
    
      @Override
      public @Nullable Entry<K, V> floorEntry(K key) {
        return headMap(key, true).lastEntry();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 52.1K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/Synchronized.java

            return nullableSynchronizedEntry(delegate().lastEntry(), mutex);
          }
        }
    
        @Override
        public Map.@Nullable Entry<K, V> lowerEntry(K key) {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().lowerEntry(key), mutex);
          }
        }
    
        @Override
        public @Nullable K lowerKey(K key) {
          synchronized (mutex) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Aug 08 15:11:10 GMT 2025
    - 53K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/Synchronized.java

            return nullableSynchronizedEntry(delegate().lastEntry(), mutex);
          }
        }
    
        @Override
        public Map.@Nullable Entry<K, V> lowerEntry(K key) {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().lowerEntry(key), mutex);
          }
        }
    
        @Override
        public @Nullable K lowerKey(K key) {
          synchronized (mutex) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Aug 08 15:11:10 GMT 2025
    - 56.9K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/Maps.java

        public @Nullable Entry<K, V2> lastEntry() {
          return transformEntry(fromMap().lastEntry());
        }
    
        @Override
        public @Nullable Entry<K, V2> lowerEntry(@ParametricNullness K key) {
          return transformEntry(fromMap().lowerEntry(key));
        }
    
        @Override
        public @Nullable K lowerKey(@ParametricNullness K key) {
          return fromMap().lowerKey(key);
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/Maps.java

        public @Nullable Entry<K, V2> lastEntry() {
          return transformEntry(fromMap().lastEntry());
        }
    
        @Override
        public @Nullable Entry<K, V2> lowerEntry(@ParametricNullness K key) {
          return transformEntry(fromMap().lowerEntry(key));
        }
    
        @Override
        public @Nullable K lowerKey(@ParametricNullness K key) {
          return fromMap().lowerKey(key);
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return getSubMap(keySet.tailIndex(checkNotNull(fromKey), inclusive), size());
      }
    
      @Override
      public @Nullable Entry<K, V> lowerEntry(K key) {
        return headMap(key, false).lastEntry();
      }
    
      @Override
      public @Nullable K lowerKey(K key) {
        return keyOrNull(lowerEntry(key));
      }
    
      @Override
      public @Nullable Entry<K, V> floorEntry(K key) {
        return headMap(key, true).lastEntry();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 54.7K bytes
    - Click Count (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

      public void testLower() {
        resetWithHole();
        assertEquals(null, navigableMap.lowerEntry(a.getKey()));
        assertEquals(null, navigableMap.lowerKey(a.getKey()));
        assertEquals(a, navigableMap.lowerEntry(b.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(b.getKey()));
        assertEquals(a, navigableMap.lowerEntry(c.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(c.getKey()));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 20:54:16 GMT 2025
    - 9K bytes
    - Click Count (0)
  10. guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java

      public void testLower() {
        resetWithHole();
        assertEquals(null, navigableMap.lowerEntry(a.getKey()));
        assertEquals(null, navigableMap.lowerKey(a.getKey()));
        assertEquals(a, navigableMap.lowerEntry(b.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(b.getKey()));
        assertEquals(a, navigableMap.lowerEntry(c.getKey()));
        assertEquals(a.getKey(), navigableMap.lowerKey(c.getKey()));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 20:54:16 GMT 2025
    - 9K bytes
    - Click Count (0)
Back to Top