Searched refs:sortedMap (Results 1 - 14 of 14) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
H A DConstrainedMapImplementsMapTest.java40 final Map<String, Integer> sortedMap = MapConstraints.constrainedMap(
42 sortedMap.put("one", 1);
43 sortedMap.put("two", 2);
44 sortedMap.put("three", 3);
45 return sortedMap;
H A DForwardingSortedMapImplementsMapTest.java56 final SortedMap<String, Integer> sortedMap = makeEmptyMap();
57 sortedMap.put("one", 1);
58 sortedMap.put("two", 2);
59 sortedMap.put("three", 3);
60 return sortedMap;
H A DMapsSortedTransformValuesTest.java50 Map<String, String> sortedMap = Maps.newTreeMap();
51 assertTrue(Maps.transformValues(sortedMap, Functions.<String>identity())
H A DForwardingSortedMapTest.java202 final SortedMap<String, Boolean> sortedMap =
206 return sortedMap;
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
H A DAreaCodeMapTest.java68 SortedMap<Integer, String> sortedMap = new TreeMap<Integer, String>();
70 sortedMap.put(121212345, "New York");
71 sortedMap.put(148034434, "Arizona");
72 return sortedMap;
76 SortedMap<Integer, String> sortedMap = new TreeMap<Integer, String>();
77 sortedMap.put(1212, "New York");
78 sortedMap.put(1213, "New York");
79 sortedMap.put(1214, "New York");
80 sortedMap.put(1480, "Arizona");
81 return sortedMap;
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSortedMaps.java324 return new FilteredSortedMap<K, V>(map.sortedMap(), predicate);
335 SortedMap<K, V> sortedMap() { method in class:SortedMaps.FilteredSortedMap
340 return sortedMap().comparator();
349 SortedMap<K, V> headMap = sortedMap();
356 headMap = sortedMap().headMap(key);
361 return new FilteredSortedMap<K, V>(sortedMap().headMap(toKey), predicate);
366 sortedMap().subMap(fromKey, toKey), predicate);
371 sortedMap().tailMap(fromKey), predicate);
H A DAbstractMultimap.java955 SortedMap<K, Collection<V>> sortedMap() { method in class:AbstractMultimap.SortedKeySet
961 return sortedMap().comparator();
966 return sortedMap().firstKey();
971 return new SortedKeySet(sortedMap().headMap(toElement));
976 return sortedMap().lastKey();
981 return new SortedKeySet(sortedMap().subMap(fromElement, toElement));
986 return new SortedKeySet(sortedMap().tailMap(fromElement));
1304 SortedMap<K, Collection<V>> sortedMap() { method in class:AbstractMultimap.SortedAsMap
1310 return sortedMap().comparator();
1315 return sortedMap()
[all...]
H A DImmutableSortedMap.java230 SortedMap<?, ?> sortedMap = (SortedMap<?, ?>) map;
231 Comparator<?> comparator2 = sortedMap.comparator();
749 SerializedForm(ImmutableSortedMap<?, ?> sortedMap) { argument
750 super(sortedMap);
751 comparator = (Comparator<Object>) sortedMap.comparator();
H A DSynchronized.java1043 static <K, V> SortedMap<K, V> sortedMap( argument
1044 SortedMap<K, V> sortedMap, @Nullable Object mutex) {
1045 return new SynchronizedSortedMap<K, V>(sortedMap, mutex);
1073 return sortedMap(delegate().headMap(toKey), mutex);
1085 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1091 return sortedMap(delegate().tailMap(fromKey), mutex);
H A DMaps.java1701 return new FilteredEntrySortedMap<K, V>(map.sortedMap(), predicate);
1712 SortedMap<K, V> sortedMap() { method in class:Maps.FilteredEntrySortedMap
1717 return sortedMap().comparator();
1726 SortedMap<K, V> headMap = sortedMap();
1733 headMap = sortedMap().headMap(key);
1738 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
1743 sortedMap().subMap(fromKey, toKey), predicate);
1748 sortedMap().tailMap(fromKey), predicate);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSynchronized.java1030 static <K, V> SortedMap<K, V> sortedMap( argument
1031 SortedMap<K, V> sortedMap, @Nullable Object mutex) {
1032 return new SynchronizedSortedMap<K, V>(sortedMap, mutex);
1060 return sortedMap(delegate().headMap(toKey), mutex);
1072 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1078 return sortedMap(delegate().tailMap(fromKey), mutex);
H A DMaps.java1672 return new FilteredEntrySortedMap<K, V>(map.sortedMap(), predicate);
1683 SortedMap<K, V> sortedMap() { method in class:Maps.FilteredEntrySortedMap
1688 return sortedMap().comparator();
1697 SortedMap<K, V> headMap = sortedMap();
1704 headMap = sortedMap().headMap(key);
1709 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
1714 sortedMap().subMap(fromKey, toKey), predicate);
1719 sortedMap().tailMap(fromKey), predicate);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 304 milliseconds