HomeSort by relevance Sort by last modified time
    Searched refs:newTreeSet (Results 1 - 17 of 17) sorted by null

  /external/guava/guava-tests/test/com/google/common/collect/
SortedIterablesTest.java 55 assertTrue(SortedIterables.hasSameComparator(Ordering.natural(), Sets.newTreeSet()));
62 Sets.newTreeSet(Ordering.natural().reverse())));
ImmutableSortedSetTest.java 485 copyOf(Sets.newTreeSet(asList("e", "a", "f", "b", "d", "c")));
490 SortedSet<String> set = copyOf(Sets.<String>newTreeSet());
539 SortedSet<String> input = Sets.newTreeSet(STRING_LENGTH);
546 SortedSet<String> input = Sets.newTreeSet(
554 Sets.newTreeSet(asList("in", "the", "quick", "jumped", "over", "a"));
560 SortedSet<String> input = Sets.newTreeSet(STRING_LENGTH);
569 assertEquals(set, Sets.newTreeSet(asList("a", "b", "c")));
570 assertEquals(Sets.newTreeSet(asList("a", "b", "c")), set);
571 assertFalse(set.equals(Sets.newTreeSet(asList("a", "b", "d"))));
572 assertFalse(Sets.newTreeSet(asList("a", "b", "d")).equals(set))
    [all...]
FauxveridesTest.java 21 import static com.google.common.collect.Sets.newTreeSet;
115 Collections.emptySet(), newTreeSet(required));
SetsTest.java 420 TreeSet<Integer> set = Sets.newTreeSet();
425 TreeSet<Derived> set = Sets.newTreeSet();
433 TreeSet<LegacyComparable> set = Sets.newTreeSet();
441 TreeSet<Integer> set = Sets.newTreeSet(SOME_COLLECTION);
446 TreeSet<Integer> set = Sets.newTreeSet(SOME_ITERABLE);
453 TreeSet<Derived> set = Sets.newTreeSet(iterable);
461 TreeSet<LegacyComparable> set = Sets.newTreeSet(iterable);
467 TreeSet<Integer> set = Sets.newTreeSet(SOME_COMPARATOR);
    [all...]
ForwardingSortedSetTest.java 117 return Lists.newArrayList(Sets.newTreeSet(insertionOrder));
ConstraintsTest.java 133 SortedSet<String> sortedSet = Sets.newTreeSet(asList("foo", "bar"));
151 SortedSet<String> sortedSet = Sets.newTreeSet(asList("foo", "bar"));
TreeMultimapNaturalTest.java 304 Sets.newTreeSet(asList(2, 3, 4, 7, 8)),
392 Sets.newTreeSet(asList("bar", "baz", "cat", "dog", "foo")),
417 Set<Entry<String, Collection<Integer>>> set = Sets.newTreeSet(
MultimapsTest.java 654 return Sets.newTreeSet(INT_COMPARATOR);
    [all...]
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerHelp.java 186 Set<Field> fields = Sets.newTreeSet(MEMBER_SORTER);
187 Set<Method> methods = Sets.newTreeSet(MEMBER_SORTER);
188 Set<Constructor<?>> constructors = Sets.newTreeSet(MEMBER_SORTER);
189 Set<Class<?>> classes = Sets.newTreeSet(CLASS_SORTER);
245 Set<Field> fields = Sets.newTreeSet(MEMBER_SORTER);
246 Set<Method> methods = Sets.newTreeSet(MEMBER_SORTER);
247 Set<Constructor<?>> constructors = Sets.newTreeSet(MEMBER_SORTER);
248 Set<Class<?>> classes = Sets.newTreeSet(CLASS_SORTER);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/controller/
VariableFrame.java 86 private final TreeSet<VariableHolder> set = Sets.newTreeSet();
  /external/guava/guava/src/com/google/common/collect/
Sets.java 304 public static <E extends Comparable> TreeSet<E> newTreeSet() {
323 public static <E extends Comparable> TreeSet<E> newTreeSet(
325 TreeSet<E> set = newTreeSet();
343 public static <E> TreeSet<E> newTreeSet(Comparator<? super E> comparator) {
    [all...]
SortedIterables.java 70 SortedSet<E> sortedSet = Sets.newTreeSet(comparator);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 301 public static <E extends Comparable> TreeSet<E> newTreeSet() {
320 public static <E extends Comparable> TreeSet<E> newTreeSet(
322 TreeSet<E> set = newTreeSet();
340 public static <E> TreeSet<E> newTreeSet(Comparator<? super E> comparator) {
    [all...]
ImmutableSortedSet.java 250 this(Sets.newTreeSet(comparator));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTable.java 113 private final Set<String> m_expandedIds = Sets.newTreeSet();
127 m_collapsedIds = Sets.newTreeSet();
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 650 milliseconds