Home
last modified time | relevance | path

Searched refs:sortedMap (Results 1 – 18 of 18) sorted by relevance

/external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
DPhonePrefixMapTest.java68 SortedMap<Integer, String> sortedMap = new TreeMap<Integer, String>(); in createDefaultStorageMapCandidate() local
70 sortedMap.put(121212345, "New York"); in createDefaultStorageMapCandidate()
71 sortedMap.put(148034434, "Arizona"); in createDefaultStorageMapCandidate()
72 return sortedMap; in createDefaultStorageMapCandidate()
76 SortedMap<Integer, String> sortedMap = new TreeMap<Integer, String>(); in createFlyweightStorageMapCandidate() local
77 sortedMap.put(1212, "New York"); in createFlyweightStorageMapCandidate()
78 sortedMap.put(1213, "New York"); in createFlyweightStorageMapCandidate()
79 sortedMap.put(1214, "New York"); in createFlyweightStorageMapCandidate()
80 sortedMap.put(1480, "Arizona"); in createFlyweightStorageMapCandidate()
81 return sortedMap; in createFlyweightStorageMapCandidate()
DPrefixTimeZonesMapTest.java83 SortedMap<Integer, String> sortedMap = new TreeMap<Integer, String>(); in createMapCandidate() local
84 sortedMap.put(1212, NEW_YORK_TZ); in createMapCandidate()
85 sortedMap.put(1213, NEW_YORK_TZ); in createMapCandidate()
86 sortedMap.put(1214, NEW_YORK_TZ); in createMapCandidate()
87 sortedMap.put(1480, CHICAGO_TZ); in createMapCandidate()
88 return sortedMap; in createMapCandidate()
/external/guava/guava-tests/test/com/google/common/collect/
DConstrainedMapImplementsMapTest.java40 final Map<String, Integer> sortedMap = MapConstraints.constrainedMap( in makePopulatedMap() local
42 sortedMap.put("one", 1); in makePopulatedMap()
43 sortedMap.put("two", 2); in makePopulatedMap()
44 sortedMap.put("three", 3); in makePopulatedMap()
45 return sortedMap; in makePopulatedMap()
DForwardingSortedMapImplementsMapTest.java56 final SortedMap<String, Integer> sortedMap = makeEmptyMap(); in makePopulatedMap() local
57 sortedMap.put("one", 1); in makePopulatedMap()
58 sortedMap.put("two", 2); in makePopulatedMap()
59 sortedMap.put("three", 3); in makePopulatedMap()
60 return sortedMap; in makePopulatedMap()
DMapsSortedTransformValuesTest.java50 Map<String, String> sortedMap = Maps.newTreeMap(); in testTransformValuesSecretlySortedMap() local
51 assertTrue(Maps.transformValues(sortedMap, Functions.<String>identity()) in testTransformValuesSecretlySortedMap()
DForwardingSortedMapTest.java181 final SortedMap<String, Boolean> sortedMap =
185 return sortedMap;
/external/guava/guava/src/com/google/common/collect/
DAbstractMapBasedMultimap.java910 SortedMap<K, Collection<V>> sortedMap() { in sortedMap() method in SortedKeySet
916 return sortedMap().comparator(); in comparator()
921 return sortedMap().firstKey(); in first()
926 return new SortedKeySet(sortedMap().headMap(toElement)); in headSet()
931 return sortedMap().lastKey(); in last()
936 return new SortedKeySet(sortedMap().subMap(fromElement, toElement)); in subSet()
941 return new SortedKeySet(sortedMap().tailMap(fromElement)); in tailSet()
1208 SortedMap<K, Collection<V>> sortedMap() {
1214 return sortedMap().comparator();
1219 return sortedMap().firstKey();
[all …]
DImmutableSortedMap.java251 SortedMap<?, ?> sortedMap = (SortedMap<?, ?>) map; in copyOfInternal() local
252 Comparator<?> comparator2 = sortedMap.comparator(); in copyOfInternal()
663 SerializedForm(ImmutableSortedMap<?, ?> sortedMap) { in SerializedForm() argument
664 super(sortedMap); in SerializedForm()
665 comparator = (Comparator<Object>) sortedMap.comparator(); in SerializedForm()
DSynchronized.java1045 static <K, V> SortedMap<K, V> sortedMap(
1046 SortedMap<K, V> sortedMap, @Nullable Object mutex) {
1047 return new SynchronizedSortedMap<K, V>(sortedMap, mutex);
1075 return sortedMap(delegate().headMap(toKey), mutex);
1087 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1093 return sortedMap(delegate().tailMap(fromKey), mutex);
DMaps.java2274 return new FilteredEntrySortedMap<K, V>(map.sortedMap(), predicate);
2285 SortedMap<K, V> sortedMap() {
2301 return sortedMap().comparator();
2331 return sortedMap().comparator();
2340 SortedMap<K, V> headMap = sortedMap();
2347 headMap = sortedMap().headMap(key);
2352 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
2357 sortedMap().subMap(fromKey, toKey), predicate);
2362 sortedMap().tailMap(fromKey), predicate);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DAbstractMapBasedMultimap.java909 SortedMap<K, Collection<V>> sortedMap() { in sortedMap() method in SortedKeySet
915 return sortedMap().comparator(); in comparator()
920 return sortedMap().firstKey(); in first()
925 return new SortedKeySet(sortedMap().headMap(toElement)); in headSet()
930 return sortedMap().lastKey(); in last()
935 return new SortedKeySet(sortedMap().subMap(fromElement, toElement)); in subSet()
940 return new SortedKeySet(sortedMap().tailMap(fromElement)); in tailSet()
1207 SortedMap<K, Collection<V>> sortedMap() {
1213 return sortedMap().comparator();
1218 return sortedMap().firstKey();
[all …]
DSynchronized.java1032 static <K, V> SortedMap<K, V> sortedMap(
1033 SortedMap<K, V> sortedMap, @Nullable Object mutex) {
1034 return new SynchronizedSortedMap<K, V>(sortedMap, mutex);
1062 return sortedMap(delegate().headMap(toKey), mutex);
1074 return sortedMap(delegate().subMap(fromKey, toKey), mutex);
1080 return sortedMap(delegate().tailMap(fromKey), mutex);
DMaps.java2245 return new FilteredEntrySortedMap<K, V>(map.sortedMap(), predicate);
2256 SortedMap<K, V> sortedMap() {
2272 return sortedMap().comparator();
2302 return sortedMap().comparator();
2311 SortedMap<K, V> headMap = sortedMap();
2318 headMap = sortedMap().headMap(key);
2323 return new FilteredEntrySortedMap<K, V>(sortedMap().headMap(toKey), predicate);
2328 sortedMap().subMap(fromKey, toKey), predicate);
2333 sortedMap().tailMap(fromKey), predicate);
/external/vogar/lib/
Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/owasp/sanitizer/lib/guava-libraries/
Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/owasp/sanitizer/distrib/lib/
Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...