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

  /external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java 47 private Ordering<Integer> SOME_COMPARATOR = Ordering.natural().reverse();
61 .orderedBy(SOME_COMPARATOR)
65 assertSame(SOME_COMPARATOR, queue.comparator());
79 .orderedBy(SOME_COMPARATOR)
84 assertSame(SOME_COMPARATOR, queue.comparator());
98 .orderedBy(SOME_COMPARATOR)
103 assertSame(SOME_COMPARATOR, queue.comparator());
130 .orderedBy(SOME_COMPARATOR)
135 assertSame(SOME_COMPARATOR, queue.comparator());
162 .orderedBy(SOME_COMPARATOR)
    [all...]
SetsTest.java 108 private static final Comparator<Integer> SOME_COMPARATOR
467 TreeSet<Integer> set = Sets.newTreeSet(SOME_COMPARATOR);
468 verifySortedSetContents(set, EMPTY_COLLECTION, SOME_COMPARATOR);
    [all...]
MapsTest.java 76 private static final Comparator<Integer> SOME_COMPARATOR =
252 TreeMap<Integer, Integer> map = Maps.newTreeMap(SOME_COMPARATOR);
254 assertSame(SOME_COMPARATOR, map.comparator());
    [all...]

Completed in 484 milliseconds