Searched defs:sortedMultiset (Results 1 - 5 of 5) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMultiset.java280 * <p>This method is safe to use even when {@code sortedMultiset} is a synchronized or concurrent
283 * @throws NullPointerException if {@code sortedMultiset} or any of its elements is null
285 public static <E> ImmutableSortedMultiset<E> copyOfSorted(SortedMultiset<E> sortedMultiset) { argument
286 return copyOfSortedEntries(sortedMultiset.comparator(),
287 Lists.newArrayList(sortedMultiset.entrySet()));
H A DMultisets.java191 * @param sortedMultiset the sorted multiset for which an unmodifiable view is
198 SortedMultiset<E> sortedMultiset) {
200 return new UnmodifiableSortedMultiset<E>(checkNotNull(sortedMultiset));
197 unmodifiableSortedMultiset( SortedMultiset<E> sortedMultiset) argument
/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/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 193 milliseconds