Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 22 for descendingSet (0.07 seconds)

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

        transient @Nullable NavigableSet<E> descendingSet;
    
        @Override
        public NavigableSet<E> descendingSet() {
          synchronized (mutex) {
            if (descendingSet == null) {
              NavigableSet<E> dS = Synchronized.navigableSet(delegate().descendingSet(), mutex);
              descendingSet = dS;
              return dS;
            }
            return descendingSet;
          }
        }
    
        @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Aug 08 15:11:10 GMT 2025
    - 56.9K bytes
    - Click Count (0)
  2. guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

                  @Override
                  public Set<E> create(Object... elements) {
                    NavigableSet<E> navigableSet = (NavigableSet<E>) delegate.create(elements);
                    return navigableSet.descendingSet();
                  }
                })
            .named(parentBuilder.getName() + " descending")
            .withFeatures(features)
            .suppressing(parentBuilder.getSuppressedTests())
            .createTestSuite();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Oct 30 16:15:19 GMT 2024
    - 6.2K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new WrappedNavigableSet(key, wrapped, (getAncestor() == null) ? this : getAncestor());
        }
    
        @Override
        public NavigableSet<V> descendingSet() {
          return wrap(getSortedSetDelegate().descendingSet());
        }
    
        @Override
        public Iterator<V> descendingIterator() {
          return new WrappedIterator(getSortedSetDelegate().descendingIterator());
        }
    
        @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

        NavigableSet<E> empty = navigableSet.subSet(e0(), false, e0(), false);
        assertEquals(new TreeSet<E>(), empty);
      }
    
      /*
       * TODO(cpovirk): more testing of subSet/headSet/tailSet/descendingSet? and/or generate derived
       * suites?
       */
    
      /**
       * Returns the {@link Method} instances for the test methods in this class that create a set with
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Nov 14 23:40:07 GMT 2024
    - 8.5K bytes
    - Click Count (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

        NavigableSet<E> empty = navigableSet.subSet(e0(), false, e0(), false);
        assertEquals(new TreeSet<E>(), empty);
      }
    
      /*
       * TODO(cpovirk): more testing of subSet/headSet/tailSet/descendingSet? and/or generate derived
       * suites?
       */
    
      /**
       * Returns the {@link Method} instances for the test methods in this class that create a set with
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Nov 14 23:40:07 GMT 2024
    - 8.5K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

                  .createTestSuite());
    
          suite.addTest(
              NavigableSetTestSuiteBuilder.using(new ContiguousSetDescendingGenerator())
                  .named("Range.asSet.descendingSet")
                  .withFeatures(
                      CollectionSize.ANY,
                      KNOWN_ORDER,
                      ALLOWS_NULL_QUERIES,
                      NON_STANDARD_TOSTRING,
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 19.6K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

                  .createTestSuite());
    
          suite.addTest(
              NavigableSetTestSuiteBuilder.using(new ContiguousSetDescendingGenerator())
                  .named("Range.asSet.descendingSet")
                  .withFeatures(
                      CollectionSize.ANY,
                      KNOWN_ORDER,
                      ALLOWS_NULL_QUERIES,
                      NON_STANDARD_TOSTRING,
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 19.6K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/Maps.java

            return removeOnlyNavigableSet(super.tailSet(fromElement, inclusive));
          }
    
          @Override
          public NavigableSet<E> descendingSet() {
            return removeOnlyNavigableSet(super.descendingSet());
          }
        };
      }
    
      /**
       * Returns an immutable map whose keys are the distinct elements of {@code keys} and whose value
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 157.6K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/Maps.java

            return removeOnlyNavigableSet(super.tailSet(fromElement, inclusive));
          }
    
          @Override
          public NavigableSet<E> descendingSet() {
            return removeOnlyNavigableSet(super.descendingSet());
          }
        };
      }
    
      /**
       * Returns an immutable map whose keys are the distinct elements of {@code keys} and whose value
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 163.5K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

                (RegularImmutableSortedSet<K>) keySet.descendingSet(), valueList.reverse(), this);
          }
        }
        return result;
      }
    
      @Override
      public ImmutableSortedSet<K> navigableKeySet() {
        return keySet;
      }
    
      @Override
      public ImmutableSortedSet<K> descendingKeySet() {
        return keySet.descendingSet();
      }
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 52.9K bytes
    - Click Count (0)
Back to Top