/external/guava/guava/src/com/google/common/collect/ |
TreeBasedTable.java | 34 import java.util.SortedSet; 45 * <p>The {@link #rowKeySet} method returns a {@link SortedSet} and the {@link 196 @Override public SortedSet<C> keySet() { 303 @Override public SortedSet<R> rowKeySet() {
|
MultimapBuilder.java | 40 import java.util.SortedSet; 142 * safely cast to a {@link java.util.SortedSet}, and the {@link Multimap#asMap()} can safely be 157 * safely cast to a {@link java.util.SortedSet}, and the {@link Multimap#asMap()} can safely be 245 private static final class TreeSetSupplier<V> implements Supplier<SortedSet<V>>, Serializable { 253 public SortedSet<V> get() {
|
MapConstraints.java | 33 import java.util.SortedSet; 750 @Override public SortedSet<V> get(K key) { 751 return (SortedSet<V>) super.get(key); 753 @Override public SortedSet<V> removeAll(Object key) { 754 return (SortedSet<V>) super.removeAll(key); 756 @Override public SortedSet<V> replaceValues( 758 return (SortedSet<V>) super.replaceValues(key, values);
|
Maps.java | 60 import java.util.SortedSet; 677 if (set instanceof SortedSet) { 678 return asMap((SortedSet<K>) set, function); 712 SortedSet<K> set, Function<? super K, V> function) { 716 static <K, V> SortedMap<K, V> asMapSortedIgnoreNavigable(SortedSet<K> set, 844 SortedAsMapView(SortedSet<K> set, Function<? super K, V> function) { 849 SortedSet<K> backingSet() { 850 return (SortedSet<K>) super.backingSet(); [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
TreeMultimap.java | 25 import java.util.SortedSet; 135 @Override SortedSet<V> createCollection() {
|
Maps.java | 55 import java.util.SortedSet; 672 if (set instanceof SortedSet) { 673 return asMap((SortedSet<K>) set, function); 707 SortedSet<K> set, Function<? super K, V> function) { 711 static <K, V> SortedMap<K, V> asMapSortedIgnoreNavigable(SortedSet<K> set, 806 SortedAsMapView(SortedSet<K> set, Function<? super K, V> function) { 811 SortedSet<K> backingSet() { 812 return (SortedSet<K>) super.backingSet(); 870 private static <E> SortedSet<E> removeOnlySortedSet(final SortedSet<E> set) [all...] |
Multimaps.java | 43 import java.util.SortedSet; 247 * {@link SortedSet} classes. 282 final Supplier<? extends SortedSet<V>> factory) { 288 transient Supplier<? extends SortedSet<V>> factory; 292 Supplier<? extends SortedSet<V>> factory) { 298 @Override protected SortedSet<V> createCollection() { 533 * Note that this doesn't return a SortedSet when delegate is a 534 * SortedSetMultiset, unlike (SortedSet<V>) super.get(). 559 @Override public SortedSet<V> get(K key) { 562 @Override public SortedSet<V> removeAll(Object key) [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
TreeMultimapExplicitTest.java | 30 import java.util.SortedSet; 197 SortedSet<String> keySet = multimap.keySet();
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
DataOutputCompressor.java | 17 import java.util.SortedSet; 152 public void writeStringSet(SortedSet c, Map object_index) throws IOException {
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
DataOutputCompressor.java | 16 import java.util.SortedSet; 151 public void writeStringSet(SortedSet c, Map object_index) throws IOException {
|
/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/ |
PhonePrefixMap.java | 29 import java.util.SortedSet; 154 SortedSet<Integer> currentSetOfLengths = phonePrefixMapStorage.getPossibleLengths();
|
FlyweightMapStorage.java | 26 import java.util.SortedSet; 71 SortedSet<String> descriptionsSet = new TreeSet<String>(); 92 private void createDescriptionPool(SortedSet<String> descriptionsSet,
|
MappingFileProvider.java | 32 import java.util.SortedSet; 132 SortedSet<String> sortedSetOfLangs = new TreeSet<String>(availableLanguages.get(i));
|
/libcore/ojluni/src/main/java/java/util/ |
TreeSet.java | 58 * SortedSet s = Collections.synchronizedSortedSet(new TreeSet(...));</pre> 170 public TreeSet(SortedSet<E> s) { 301 c instanceof SortedSet && 303 SortedSet<? extends E> set = (SortedSet<? extends E>) c; 360 public SortedSet<E> subSet(E fromElement, E toElement) { 371 public SortedSet<E> headSet(E toElement) { 382 public SortedSet<E> tailSet(E fromElement) {
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
LocaleExtensions.java | 39 import java.util.SortedSet; 103 SortedSet<String> uaset = null;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
KeyboardParams.java | 27 import java.util.SortedSet; 68 public final SortedSet<Key> mSortedKeys = new TreeSet<>(ROW_COLUMN_COMPARATOR);
|
/external/dagger2/lib/ |
auto-service-1.0-rc2.jar | |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
Collections2Test.java | 41 import java.util.SortedSet; 166 * java.util.Collections#synchronizedSortedSet(java.util.SortedSet) 231 * java.util.Collections#unmodifiableSortedSet(java.util.SortedSet) 439 assertFalse(c instanceof SortedSet); 452 SortedSet<String> c = new TreeSet<String>();
|
/prebuilts/tools/common/m2/repository/com/google/auto/service/auto-service/1.0-rc2/ |
auto-service-1.0-rc2.jar | |
/development/tools/idegen/src/ |
IntelliJ.java | 19 import java.util.SortedSet;
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
SortedSetTestSuiteBuilder.java | 33 * a SortedSet implementation.
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
SortedCopyBenchmark.java | 118 int sortedSet(int reps) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
TreeMultimapExplicitTest.java | 32 import java.util.SortedSet; 199 SortedSet<String> keySet = multimap.keySet();
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
TestCanonicalIterator.java | 13 import java.util.SortedSet; 142 SortedSet set = new TreeSet();
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
TestCanonicalIterator.java | 12 import java.util.SortedSet; 138 SortedSet set = new TreeSet();
|