Searched defs:descendingMultiset (Results 1 - 8 of 8) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DAbstractSortedMultiset.java113 return Multisets.iteratorImpl(descendingMultiset());
116 private transient SortedMultiset<E> descendingMultiset; field in class:AbstractSortedMultiset
119 public SortedMultiset<E> descendingMultiset() { method in class:AbstractSortedMultiset
120 SortedMultiset<E> result = descendingMultiset;
121 return (result == null) ? descendingMultiset = createDescendingMultiset() : result;
H A DDescendingImmutableSortedMultiset.java68 public ImmutableSortedMultiset<E> descendingMultiset() { method in class:DescendingImmutableSortedMultiset
74 return forward.tailMultiset(upperBound, boundType).descendingMultiset();
79 return forward.headMultiset(lowerBound, boundType).descendingMultiset();
H A DSortedMultiset.java92 SortedMultiset<E> descendingMultiset(); method in interface:SortedMultiset
H A DSortedMultisets.java124 .descendingMultiset();
130 fromBoundType).descendingMultiset();
136 .descendingMultiset();
143 @Override public SortedMultiset<E> descendingMultiset() { method in class:SortedMultisets.DescendingMultiset
H A DImmutableSortedMultiset.java366 transient ImmutableSortedMultiset<E> descendingMultiset; field in class:ImmutableSortedMultiset
369 public ImmutableSortedMultiset<E> descendingMultiset() { method in class:ImmutableSortedMultiset
370 ImmutableSortedMultiset<E> result = descendingMultiset;
372 return descendingMultiset = new DescendingImmutableSortedMultiset<E>(this);
H A DMultisets.java225 private transient UnmodifiableSortedMultiset<E> descendingMultiset; field in class:Multisets.UnmodifiableSortedMultiset
228 public SortedMultiset<E> descendingMultiset() { method in class:Multisets.UnmodifiableSortedMultiset
229 UnmodifiableSortedMultiset<E> result = descendingMultiset;
232 delegate().descendingMultiset());
233 result.descendingMultiset = this;
234 return descendingMultiset = result;
/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 133 milliseconds