Searched refs:SOME_COMPARATOR (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java47 private Ordering<Integer> SOME_COMPARATOR = Ordering.natural().reverse(); field in class:MinMaxPriorityQueueTest
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...]
H A DSetsTest.java108 private static final Comparator<Integer> SOME_COMPARATOR field in class:SetsTest
467 TreeSet<Integer> set = Sets.newTreeSet(SOME_COMPARATOR);
468 verifySortedSetContents(set, EMPTY_COLLECTION, SOME_COMPARATOR);
H A DMapsTest.java76 private static final Comparator<Integer> SOME_COMPARATOR = field in class:MapsTest
252 TreeMap<Integer, Integer> map = Maps.newTreeMap(SOME_COMPARATOR);
254 assertSame(SOME_COMPARATOR, map.comparator());

Completed in 42 milliseconds