HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableSortedSet (Results 26 - 50 of 98) sorted by null

12 3 4

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ContiguousSet.java 39 public abstract class ContiguousSet<C extends Comparable> extends ImmutableSortedSet<C> {
150 @Deprecated public static <E> ImmutableSortedSet.Builder<E> builder() {
ImmutableSortedMap.java 24 import com.google.common.collect.ImmutableSortedSet;
217 private transient ImmutableSortedSet<K> keySet;
219 @Override public ImmutableSortedSet<K> keySet() {
220 ImmutableSortedSet<K> ks = keySet;
224 @Override ImmutableSortedSet<K> createKeySet() {
231 return ImmutableSortedSet.copyOf(comparator, sortedDelegate.keySet());
FluentIterable.java 350 * Returns an {@code ImmutableSortedSet} containing all of the elements from this {@code
352 * {@code comparator.compare(x, y) == 0}) removed. To produce an {@code ImmutableSortedSet} sorted
359 public final ImmutableSortedSet<E> toSortedSet(Comparator<? super E> comparator) {
360 return ImmutableSortedSet.copyOf(comparator, iterable);
456 * Returns an {@code ImmutableSortedSet} containing all of the elements from this
459 * {@code ImmutableSortedSet} sorted by its natural ordering, use
468 public final ImmutableSortedSet<E> toImmutableSortedSet(
ImmutableSetMultimap.java 244 * are {@link ImmutableSortedSet} instances. However, serialization does not
456 : ImmutableSortedSet.copyOf(valueComparator, values);
463 : ImmutableSortedSet.<V>emptySet(valueComparator);
467 return emptySet instanceof ImmutableSortedSet
468 ? ((ImmutableSortedSet<V>) emptySet).comparator()
  /external/guava/guava/src/com/google/common/collect/
AbstractSortedSetMultimap.java 59 return ImmutableSortedSet.emptySet(valueComparator());
DescendingImmutableSortedMultiset.java 53 public ImmutableSortedSet<E> elementSet() {
ContiguousSet.java 42 public abstract class ContiguousSet<C extends Comparable> extends ImmutableSortedSet<C> {
181 @Deprecated public static <E> ImmutableSortedSet.Builder<E> builder() {
FluentIterable.java 362 * Returns an {@code ImmutableSortedSet} containing all of the elements from this {@code
364 * {@code comparator.compare(x, y) == 0}) removed. To produce an {@code ImmutableSortedSet} sorted
371 public final ImmutableSortedSet<E> toSortedSet(Comparator<? super E> comparator) {
372 return ImmutableSortedSet.copyOf(comparator, iterable);
468 * Returns an {@code ImmutableSortedSet} containing all of the elements from this
471 * {@code ImmutableSortedSet} sorted by its natural ordering, use
480 public final ImmutableSortedSet<E> toImmutableSortedSet(
EmptyContiguousSet.java 138 ImmutableSortedSet<C> createDescendingSet() {
RegularImmutableSortedMap.java 85 public ImmutableSortedSet<K> keySet() {
RegularImmutableSortedMultiset.java 81 public ImmutableSortedSet<E> elementSet() {
ImmutableSortedMap.java 99 ImmutableSortedSet<K> keySet, ImmutableList<V> valueList) {
124 return from(ImmutableSortedSet.of(k1), ImmutableList.of(v1));
442 @Override public abstract ImmutableSortedSet<K> keySet();
646 public ImmutableSortedSet<K> navigableKeySet() {
650 public ImmutableSortedSet<K> descendingKeySet() {
ImmutableSetMultimap.java 250 * are {@link ImmutableSortedSet} instances. However, serialization does not
462 : ImmutableSortedSet.copyOf(valueComparator, values);
469 : ImmutableSortedSet.<V>emptySet(valueComparator);
484 return emptySet instanceof ImmutableSortedSet
485 ? ((ImmutableSortedSet<V>) emptySet).comparator()
  /external/guava/guava-gwt/src/com/google/common/collect/
RegularImmutableSortedSet_CustomFieldSerializer.java 54 * ImmutableSortedSet.copyOf always return a RegularImmutableSortedSet back.
57 ImmutableSortedSet.copyOf(comparator, elements);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSetTest.java 116 ImmutableSortedSet<String> sortedSet = ImmutableSortedSet.of("a");
ContiguousSetTest.java 69 ImmutableSortedSet.of(1, 2, 3))
109 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
127 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
143 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
160 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
190 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
206 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableField.java 35 import com.google.common.collect.ImmutableSortedSet;
107 public static ImmutableSortedSet<ImmutableField> immutableSetOf(@Nullable Iterable<? extends Field> list) {
ImmutableMethod.java 36 import com.google.common.collect.ImmutableSortedSet;
115 public static ImmutableSortedSet<ImmutableMethod> immutableSetOf(@Nullable Iterable<? extends Method> list) {
  /external/guava/guava-tests/test/com/google/common/collect/
FauxveridesTest.java 43 * example, that a call written "{@code ImmutableSortedSet.copyOf()}" cannot
68 doHasAllFauxveridesTest(ImmutableSortedSet.class, ImmutableSet.class);
96 ImmutableSortedSet.copyOf(original);
106 ImmutableSortedSet.copyOf(original.iterator());
ContiguousSetTest.java 73 ImmutableSortedSet.of(1, 2, 3))
134 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
152 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
168 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
185 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
215 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
231 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
ImmutableSetTest.java 208 ImmutableSortedSet<String> sortedSet = ImmutableSortedSet.of("a");
  /external/smali/util/src/main/java/org/jf/util/
CollectionUtils.java 35 import com.google.common.collect.ImmutableSortedSet;
165 return ImmutableSortedSet.copyOf(collection);
178 return ImmutableSortedSet.copyOf(elementComparator, collection);
  /external/guava/guava/src/com/google/common/reflect/
ClassPath.java 29 import com.google.common.collect.ImmutableSortedSet;
305 private final ImmutableSortedSet.Builder<ResourceInfo> resources =
306 new ImmutableSortedSet.Builder<ResourceInfo>(Ordering.usingToString());
309 ImmutableSortedSet<ResourceInfo> getResources() {
  /external/guava/guava-tests/benchmark/com/google/common/collect/
SortedCopyBenchmark.java 126 dummy += ImmutableSortedSet.copyOf(input).first();
  /external/guava/guava-testlib/src/com/google/common/testing/
ArbitraryInstances.java 47 import com.google.common.collect.ImmutableSortedSet;
229 .put(SortedSet.class, ImmutableSortedSet.of())
230 .put(ImmutableSortedSet.class, ImmutableSortedSet.of())

Completed in 1082 milliseconds

12 3 4