OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SOME_COMPARATOR
(Results
1 - 5
of
5
) sorted by null
/external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java
48
private Ordering<Integer>
SOME_COMPARATOR
= Ordering.natural().reverse();
62
.orderedBy(
SOME_COMPARATOR
)
66
assertSame(
SOME_COMPARATOR
, queue.comparator());
80
.orderedBy(
SOME_COMPARATOR
)
85
assertSame(
SOME_COMPARATOR
, queue.comparator());
99
.orderedBy(
SOME_COMPARATOR
)
104
assertSame(
SOME_COMPARATOR
, queue.comparator());
131
.orderedBy(
SOME_COMPARATOR
)
136
assertSame(
SOME_COMPARATOR
, queue.comparator());
163
.orderedBy(
SOME_COMPARATOR
)
[
all
...]
SetsTest.java
111
private static final Comparator<Integer>
SOME_COMPARATOR
530
TreeSet<Integer> set = Sets.newTreeSet(
SOME_COMPARATOR
);
531
verifySortedSetContents(set, EMPTY_COLLECTION,
SOME_COMPARATOR
);
[
all
...]
MapsTest.java
78
private static final Comparator<Integer>
SOME_COMPARATOR
=
265
TreeMap<Integer, Integer> map = Maps.newTreeMap(
SOME_COMPARATOR
);
267
assertSame(
SOME_COMPARATOR
, map.comparator());
[
all
...]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
SetsTest.java
86
private static final Comparator<Integer>
SOME_COMPARATOR
272
TreeSet<Integer> set = Sets.newTreeSet(
SOME_COMPARATOR
);
273
verifySortedSetContents(set, EMPTY_COLLECTION,
SOME_COMPARATOR
);
MapsTest.java
66
private static final Comparator<Integer>
SOME_COMPARATOR
=
204
TreeMap<Integer, Integer> map = Maps.newTreeMap(
SOME_COMPARATOR
);
206
assertSame(
SOME_COMPARATOR
, map.comparator());
[
all
...]
Completed in 89 milliseconds