HomeSort by relevance Sort by last modified time
    Searched defs:ImmutableSortedSet (Results 1 - 11 of 11) sorted by null

  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedSet.java 46 * ImmutableSortedSet} contains its own private data and will <i>never</i>
60 * {@code ImmutableSortedSet} doesn't use {@link Object#equals} to determine if
72 * <b>Warning:</b> Like most sets, an {@code ImmutableSortedSet} will not
89 public abstract class ImmutableSortedSet<E> extends ImmutableSortedSetFauxverideShim<E>
95 private static final ImmutableSortedSet<Comparable> NATURAL_EMPTY_SET =
99 private static <E> ImmutableSortedSet<E> emptySet() {
100 return (ImmutableSortedSet<E>) NATURAL_EMPTY_SET;
103 static <E> ImmutableSortedSet<E> emptySet(
115 public static <E> ImmutableSortedSet<E> of() {
122 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSet.java 34 * GWT emulation of {@link ImmutableSortedSet}.
38 public abstract class ImmutableSortedSet<E>
42 // which overrides ImmutableSet & which ImmutableSortedSet extends.
45 @Deprecated public static <E> ImmutableSortedSet.Builder<E> builder() {
54 private static final ImmutableSortedSet<Object> NATURAL_EMPTY_SET =
58 private static <E> ImmutableSortedSet<E> emptySet() {
59 return (ImmutableSortedSet<E>) NATURAL_EMPTY_SET;
62 static <E> ImmutableSortedSet<E> emptySet(
72 public static <E> ImmutableSortedSet<E> of() {
76 public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetMultimapTest.java 226 assertFalse(multimap.get("a") instanceof ImmutableSortedSet);
227 assertFalse(multimap.get("x") instanceof ImmutableSortedSet);
228 assertFalse(multimap.asMap().get("a") instanceof ImmutableSortedSet);
246 assertTrue(multimap.get("a") instanceof ImmutableSortedSet);
248 ((ImmutableSortedSet<Integer>) multimap.get("a")).comparator());
249 assertTrue(multimap.get("x") instanceof ImmutableSortedSet);
251 ((ImmutableSortedSet<Integer>) multimap.get("x")).comparator());
252 assertTrue(multimap.asMap().get("a") instanceof ImmutableSortedSet);
254 ((ImmutableSortedSet<Integer>) multimap.asMap().get("a")).comparator());
273 assertTrue(multimap.get("a") instanceof ImmutableSortedSet);
    [all...]
ImmutableSortedSetTest.java 39 * Unit tests for {@link ImmutableSortedSet}.
60 return ImmutableSortedSet.of();
64 return ImmutableSortedSet.of(e);
68 return ImmutableSortedSet.of(e1, e2);
72 return ImmutableSortedSet.of(e1, e2, e3);
77 return ImmutableSortedSet.of(e1, e2, e3, e4);
82 return ImmutableSortedSet.of(e1, e2, e3, e4, e5);
87 return ImmutableSortedSet.of(e1, e2, e3, e4, e5, e6, rest);
91 return ImmutableSortedSet.copyOf(elements);
95 return ImmutableSortedSet.copyOf(elements)
    [all...]
  /tools/motodev/src/plugins/videos/libs/gdata/java/deps/
google-collect-1.0-rc1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 

Completed in 116 milliseconds