Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for floorEntry (0.04 sec)

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

            return nullableSynchronizedEntry(delegate().firstEntry(), mutex);
          }
        }
    
        @Override
        public Map.@Nullable Entry<K, V> floorEntry(K key) {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().floorEntry(key), mutex);
          }
        }
    
        @Override
        public @Nullable K floorKey(K key) {
          synchronized (mutex) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 53K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

            return nullableSynchronizedEntry(delegate().firstEntry(), mutex);
          }
        }
    
        @Override
        public Map.@Nullable Entry<K, V> floorEntry(K key) {
          synchronized (mutex) {
            return nullableSynchronizedEntry(delegate().floorEntry(key), mutex);
          }
        }
    
        @Override
        public @Nullable K floorKey(K key) {
          synchronized (mutex) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 56.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      public @Nullable K lowerKey(K key) {
        return keyOrNull(lowerEntry(key));
      }
    
      @Override
      public @Nullable Entry<K, V> floorEntry(K key) {
        return headMap(key, true).lastEntry();
      }
    
      @Override
      public @Nullable K floorKey(K key) {
        return keyOrNull(floorEntry(key));
      }
    
      @Override
      public @Nullable Entry<K, V> ceilingEntry(K key) {
        return tailMap(key, true).firstEntry();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 21:07:18 UTC 2025
    - 52.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MapsTest.java

        }
        {
          Entry<Integer, String> entry = unmod.lowerEntry(1);
          assertThat(entry).isNull();
        }
        {
          Entry<Integer, String> entry = unmod.floorEntry(2);
          assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four"));
        }
        {
          Entry<Integer, String> entry = unmod.ceilingEntry(2);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 62.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

        }
        {
          Entry<Integer, String> entry = unmod.lowerEntry(1);
          assertThat(entry).isNull();
        }
        {
          Entry<Integer, String> entry = unmod.floorEntry(2);
          assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four"));
        }
        {
          Entry<Integer, String> entry = unmod.ceilingEntry(2);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 65K bytes
    - Viewed (0)
Back to top