/external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/ |
D | PhonePrefixMapTest.java | 68 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()
|
D | PrefixTimeZonesMapTest.java | 83 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/ |
D | ConstrainedMapImplementsMapTest.java | 40 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()
|
D | ForwardingSortedMapImplementsMapTest.java | 56 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()
|
D | MapsSortedTransformValuesTest.java | 50 Map<String, String> sortedMap = Maps.newTreeMap(); in testTransformValuesSecretlySortedMap() local 51 assertTrue(Maps.transformValues(sortedMap, Functions.<String>identity()) in testTransformValuesSecretlySortedMap()
|
D | ForwardingSortedMapTest.java | 181 final SortedMap<String, Boolean> sortedMap = 185 return sortedMap;
|
/external/guava/guava/src/com/google/common/collect/ |
D | AbstractMapBasedMultimap.java | 910 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 …]
|
D | ImmutableSortedMap.java | 251 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()
|
D | Synchronized.java | 1045 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);
|
D | Maps.java | 2274 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/ |
D | AbstractMapBasedMultimap.java | 909 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 …]
|
D | Synchronized.java | 1032 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);
|
D | Maps.java | 2245 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/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/owasp/sanitizer/lib/guava-libraries/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/owasp/sanitizer/distrib/lib/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.pde.core_3.6.1.v20100902_r361.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |