Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for lowerEntry (0.1 seconds)

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

      @Override
      public @Nullable Entry<K, V> lowerEntry(@ParametricNullness K key) {
        return delegate().lowerEntry(key);
      }
    
      /**
       * A sensible definition of {@link #lowerEntry} in terms of the {@code lastEntry()} of {@link
       * #headMap(Object, boolean)}. If you override {@code headMap}, you may wish to override {@code
       * lowerEntry} to forward to this implementation.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 14.1K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/ForwardingNavigableMap.java

      @Override
      public @Nullable Entry<K, V> lowerEntry(@ParametricNullness K key) {
        return delegate().lowerEntry(key);
      }
    
      /**
       * A sensible definition of {@link #lowerEntry} in terms of the {@code lastEntry()} of {@link
       * #headMap(Object, boolean)}. If you override {@code headMap}, you may wish to override {@code
       * lowerEntry} to forward to this implementation.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 14.3K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/TreeRangeMap.java

      private Range<K> coalescedRange(Range<K> range, V value) {
        Range<K> coalescedRange = range;
        Entry<Cut<K>, RangeMapEntry<K, V>> lowerEntry =
            entriesByLowerBound.lowerEntry(range.lowerBound);
        coalescedRange = coalesce(coalescedRange, value, lowerEntry);
    
        Entry<Cut<K>, RangeMapEntry<K, V>> higherEntry =
            entriesByLowerBound.floorEntry(range.upperBound);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 22.7K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

          assertTrue(Thread.holdsLock(mutex));
          return delegate().lastEntry();
        }
    
        @Override
        public @Nullable Entry<K, V> lowerEntry(K key) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().lowerEntry(key);
        }
    
        @Override
        public @Nullable K lowerKey(K key) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().lowerKey(key);
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/collect/TreeRangeSet.java

          } else {
            Entry<Cut<C>, Range<C>> lowerEntry =
                rangesByLowerBound.lowerEntry(upperBoundWindow.lowerEndpoint());
            if (lowerEntry == null) {
              backingItr = rangesByLowerBound.values().iterator();
            } else if (upperBoundWindow.lowerBound.isLessThan(lowerEntry.getValue().upperBound)) {
              backingItr = rangesByLowerBound.tailMap(lowerEntry.getKey(), true).values().iterator();
            } else {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 32.3K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. android/guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

      }
    
      <K, V> void testNavigationAgainstExpected(
          NavigableMap<K, V> expected, NavigableMap<K, V> navigableMap, Iterable<K> keysToTest) {
        for (K key : keysToTest) {
          assertEquals(expected.lowerEntry(key), navigableMap.lowerEntry(key));
          assertEquals(expected.floorEntry(key), navigableMap.floorEntry(key));
          assertEquals(expected.ceilingEntry(key), navigableMap.ceilingEntry(key));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 24.4K bytes
    - Click Count (0)
Back to Top