Searched refs:sortedMultiset (Results 1 - 6 of 6) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetNavigationTester.java49 private SortedMultiset<E> sortedMultiset; field in class:MultisetNavigationTester
65 sortedMultiset = cast(getMultiset());
69 Collections.sort(entries, sortedMultiset.comparator());
73 a = Multisets.immutableEntry(entries.get(0), sortedMultiset.count(entries.get(0)));
75 b = Multisets.immutableEntry(entries.get(1), sortedMultiset.count(entries.get(1)));
76 c = Multisets.immutableEntry(entries.get(2), sortedMultiset.count(entries.get(2)));
82 * Resets the contents of sortedMultiset to have entries a, c, for the navigation tests.
91 sortedMultiset = (SortedMultiset<E>) getMultiset();
96 assertNull(sortedMultiset.firstEntry());
98 sortedMultiset
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMultisetsTest.java232 ImmutableMultiset<String> sortedMultiset =
235 ASSERT.that(sortedMultiset.entrySet()).hasContentsInOrder(
239 ASSERT.that(sortedMultiset).hasContentsInOrder(
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMultiset.java263 * <p>This method is safe to use even when {@code sortedMultiset} is a synchronized or concurrent
266 * @throws NullPointerException if {@code sortedMultiset} or any of its elements is null
269 public static <E> ImmutableSortedMultiset<E> copyOfSorted(SortedMultiset<E> sortedMultiset) { argument
270 Comparator<? super E> comparator = sortedMultiset.comparator();
274 return copyOfInternal(comparator, sortedMultiset);
H A DMultisets.java188 * @param sortedMultiset the sorted multiset for which an unmodifiable view is
195 SortedMultiset<E> sortedMultiset) {
196 return new UnmodifiableSortedMultiset<E>(checkNotNull(sortedMultiset));
194 unmodifiableSortedMultiset( SortedMultiset<E> sortedMultiset) argument
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 103 milliseconds