Home
last modified time | relevance | path

Searched refs:Multimap (Results 1 – 25 of 701) sorted by relevance

12345678910>>...29

/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DMultimapsTest.java103 BiPredicate<Multimap<?, ?>, Multimap<?, ?>> equivalence = in testToMultimap()
105 .onResultOf((Multimap<?, ?> mm) -> ImmutableList.copyOf(mm.asMap().entrySet())) in testToMultimap()
125 BiPredicate<Multimap<?, ?>, Multimap<?, ?>> equivalence = in testFlatteningToMultimap()
127 .onResultOf((Multimap<?, ?> mm) -> ImmutableList.copyOf(mm.asMap().entrySet())) in testFlatteningToMultimap()
171 Multimap<String, Integer> mod = HashMultimap.create(); in testUnmodifiableMultimapShortCircuit()
172 Multimap<String, Integer> unmod = Multimaps.unmodifiableMultimap(mod); in testUnmodifiableMultimapShortCircuit()
177 assertSame(immutable, Multimaps.unmodifiableMultimap((Multimap<String, Integer>) immutable)); in testUnmodifiableMultimapShortCircuit()
189 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableArrayListMultimap()
220 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableHashMultimap()
233 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableTreeMultimap()
[all …]
H A DForwardingMultimapTest.java35 Multimap.class, in testForwarding()
36 new Function<Multimap, Multimap<?, ?>>() { in testForwarding()
38 public Multimap<?, ?> apply(Multimap delegate) { in testForwarding()
39 return wrap((Multimap<?, ?>) delegate); in testForwarding()
45 Multimap<Integer, String> map1 = ImmutableMultimap.of(1, "one"); in testEquals()
46 Multimap<Integer, String> map2 = ImmutableMultimap.of(2, "two"); in testEquals()
53 private static <K, V> Multimap<K, V> wrap(final Multimap<K, V> delegate) { in wrap()
56 protected Multimap<K, V> delegate() { in wrap()
H A DImmutableListMultimapTest.java191 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllIterable()
202 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllVarargs()
209 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
214 Multimap<String, Integer> moreToPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
221 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllMultimap()
250 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimapWithDuplicates()
256 Multimap<String, Integer> moreToPut = LinkedListMultimap.create(); in testBuilderPutAllMultimapWithDuplicates()
264 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllMultimapWithDuplicates()
271 Multimap<@Nullable String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutNullKey()
290 builder.putAll((Multimap<String, Integer>) toPut); in testBuilderPutNullKey()
[all …]
H A DLinkedHashMultimapTest.java108 private Multimap<String, Integer> initializeMultimap5() { in initializeMultimap5()
109 Multimap<String, Integer> multimap = LinkedHashMultimap.create(); in initializeMultimap5()
119 Multimap<String, Integer> multimap = LinkedHashMultimap.create(); in testToString()
129 Multimap<String, Integer> multimap = initializeMultimap5(); in testOrderingReadOnly()
134 Multimap<String, Integer> multimap = initializeMultimap5(); in testOrderingUnmodifiable()
140 Multimap<String, Integer> multimap = initializeMultimap5(); in testOrderingSynchronized()
147 Multimap<String, Integer> multimap = initializeMultimap5(); in testSerializationOrdering()
148 Multimap<String, Integer> copy = SerializableTester.reserializeAndAssert(multimap); in testSerializationOrdering()
155 Multimap<String, Integer> multimap = LinkedHashMultimap.create(); in testSerializationOrderingKeysAndEntries()
169 private void assertOrderingReadOnly(Multimap<String, Integer> multimap) { in assertOrderingReadOnly()
[all …]
H A DImmutableSetMultimapTest.java249 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllIterable()
260 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllVarargs()
267 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
272 Multimap<String, Integer> moreToPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
279 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllMultimap()
304 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimapWithDuplicates()
317 Multimap<@Nullable String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutNullKey()
336 builder.putAll((Multimap<String, Integer>) toPut); in testBuilderPutNullKey()
343 Multimap<String, @Nullable Integer> toPut = LinkedListMultimap.create(); in testBuilderPutNullValue()
362 builder.putAll((Multimap<String, Integer>) toPut); in testBuilderPutNullValue()
[all …]
H A DFilteredMultimapTest.java41 protected Multimap<String, Integer> create() { in create()
42 Multimap<String, Integer> unfiltered = HashMultimap.create(); in create()
57 Multimap<String, Integer> unfiltered = HashMultimap.create(); in testFilterKeys()
60 Multimap<String, Integer> filtered = Multimaps.filterKeys(unfiltered, KEY_PREDICATE); in testFilterKeys()
74 Multimap<String, Integer> unfiltered = HashMultimap.create(); in testFilterValues()
77 Multimap<String, Integer> filtered = Multimaps.filterValues(unfiltered, VALUE_PREDICATE); in testFilterValues()
84 Multimap<String, Integer> unfiltered = HashMultimap.create(); in testFilterFiltered()
88 Multimap<String, Integer> keyFiltered = Multimaps.filterKeys(unfiltered, KEY_PREDICATE); in testFilterFiltered()
89 Multimap<String, Integer> filtered = Multimaps.filterValues(keyFiltered, VALUE_PREDICATE); in testFilterFiltered()
H A DLinkedListMultimapTest.java99 Multimap<String, Integer> multimap = create(); in testGetRandomAccess()
111 Multimap<String, Integer> multimap = create(); in testRemoveAllRandomAccess()
123 Multimap<String, Integer> multimap = create(); in testReplaceValuesRandomAccess()
131 Multimap<String, Integer> multimap = LinkedListMultimap.create(); in testCreateFromMultimap()
181 Multimap<String, Integer> map = create(); in testLinkedPutInOrder()
190 Multimap<String, Integer> map = create(); in testLinkedPutOutOfOrder()
199 Multimap<String, Integer> src = create(); in testLinkedPutAllMultimap()
203 Multimap<String, Integer> dst = create(); in testLinkedPutAllMultimap()
210 Multimap<String, Integer> map = create(); in testLinkedReplaceValues()
238 Multimap<String, Integer> map = create(); in testLinkedKeySet()
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DForwardingMultimapTest.java35 Multimap.class, in testForwarding()
36 new Function<Multimap, Multimap<?, ?>>() { in testForwarding()
38 public Multimap<?, ?> apply(Multimap delegate) { in testForwarding()
39 return wrap((Multimap<?, ?>) delegate); in testForwarding()
45 Multimap<Integer, String> map1 = ImmutableMultimap.of(1, "one"); in testEquals()
46 Multimap<Integer, String> map2 = ImmutableMultimap.of(2, "two"); in testEquals()
53 private static <K, V> Multimap<K, V> wrap(final Multimap<K, V> delegate) { in wrap()
56 protected Multimap<K, V> delegate() { in wrap()
H A DMultimapsTest.java102 Multimap<String, Integer> mod = HashMultimap.create(); in testUnmodifiableMultimapShortCircuit()
103 Multimap<String, Integer> unmod = Multimaps.unmodifiableMultimap(mod); in testUnmodifiableMultimapShortCircuit()
108 assertSame(immutable, Multimaps.unmodifiableMultimap((Multimap<String, Integer>) immutable)); in testUnmodifiableMultimapShortCircuit()
120 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableArrayListMultimap()
151 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableHashMultimap()
164 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableTreeMultimap()
181 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableSynchronizedArrayListMultimap()
202 Multimap<String, Integer> unmodifiable = in testSerializingUnmodifiableSynchronizedHashMultimap()
227 Multimap<String, Integer> unmodifiable = prepareUnmodifiableTests(multimap, false, "null", 42); in testSerializingUnmodifiableSynchronizedTreeMultimap()
233 Multimap<String, Integer> mod = HashMultimap.create(); in testUnmodifiableMultimapIsView()
[all …]
H A DLinkedHashMultimapTest.java107 private Multimap<String, Integer> initializeMultimap5() { in initializeMultimap5()
108 Multimap<String, Integer> multimap = LinkedHashMultimap.create(); in initializeMultimap5()
118 Multimap<String, Integer> multimap = LinkedHashMultimap.create(); in testToString()
128 Multimap<String, Integer> multimap = initializeMultimap5(); in testOrderingReadOnly()
133 Multimap<String, Integer> multimap = initializeMultimap5(); in testOrderingUnmodifiable()
139 Multimap<String, Integer> multimap = initializeMultimap5(); in testOrderingSynchronized()
146 Multimap<String, Integer> multimap = initializeMultimap5(); in testSerializationOrdering()
147 Multimap<String, Integer> copy = SerializableTester.reserializeAndAssert(multimap); in testSerializationOrdering()
154 Multimap<String, Integer> multimap = LinkedHashMultimap.create(); in testSerializationOrderingKeysAndEntries()
168 private void assertOrderingReadOnly(Multimap<String, Integer> multimap) { in assertOrderingReadOnly()
[all …]
H A DImmutableListMultimapTest.java185 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllIterable()
196 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllVarargs()
203 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
208 Multimap<String, Integer> moreToPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
215 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllMultimap()
244 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimapWithDuplicates()
250 Multimap<String, Integer> moreToPut = LinkedListMultimap.create(); in testBuilderPutAllMultimapWithDuplicates()
258 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllMultimapWithDuplicates()
265 Multimap<@Nullable String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutNullKey()
284 builder.putAll((Multimap<String, Integer>) toPut); in testBuilderPutNullKey()
[all …]
H A DImmutableSetMultimapTest.java243 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllIterable()
254 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllVarargs()
261 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
266 Multimap<String, Integer> moreToPut = LinkedListMultimap.create(); in testBuilderPutAllMultimap()
273 Multimap<String, Integer> multimap = builder.build(); in testBuilderPutAllMultimap()
298 Multimap<String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutAllMultimapWithDuplicates()
311 Multimap<@Nullable String, Integer> toPut = LinkedListMultimap.create(); in testBuilderPutNullKey()
330 builder.putAll((Multimap<String, Integer>) toPut); in testBuilderPutNullKey()
337 Multimap<String, @Nullable Integer> toPut = LinkedListMultimap.create(); in testBuilderPutNullValue()
356 builder.putAll((Multimap<String, Integer>) toPut); in testBuilderPutNullValue()
[all …]
H A DFilteredMultimapTest.java41 protected Multimap<String, Integer> create() { in create()
42 Multimap<String, Integer> unfiltered = HashMultimap.create(); in create()
57 Multimap<String, Integer> unfiltered = HashMultimap.create(); in testFilterKeys()
60 Multimap<String, Integer> filtered = Multimaps.filterKeys(unfiltered, KEY_PREDICATE); in testFilterKeys()
74 Multimap<String, Integer> unfiltered = HashMultimap.create(); in testFilterValues()
77 Multimap<String, Integer> filtered = Multimaps.filterValues(unfiltered, VALUE_PREDICATE); in testFilterValues()
84 Multimap<String, Integer> unfiltered = HashMultimap.create(); in testFilterFiltered()
88 Multimap<String, Integer> keyFiltered = Multimaps.filterKeys(unfiltered, KEY_PREDICATE); in testFilterFiltered()
89 Multimap<String, Integer> filtered = Multimaps.filterValues(keyFiltered, VALUE_PREDICATE); in testFilterFiltered()
H A DLinkedListMultimapTest.java100 Multimap<String, Integer> multimap = create(); in testGetRandomAccess()
112 Multimap<String, Integer> multimap = create(); in testRemoveAllRandomAccess()
124 Multimap<String, Integer> multimap = create(); in testReplaceValuesRandomAccess()
132 Multimap<String, Integer> multimap = LinkedListMultimap.create(); in testCreateFromMultimap()
182 Multimap<String, Integer> map = create(); in testLinkedPutInOrder()
191 Multimap<String, Integer> map = create(); in testLinkedPutOutOfOrder()
200 Multimap<String, Integer> src = create(); in testLinkedPutAllMultimap()
204 Multimap<String, Integer> dst = create(); in testLinkedPutAllMultimap()
211 Multimap<String, Integer> map = create(); in testLinkedReplaceValues()
239 Multimap<String, Integer> map = create(); in testLinkedKeySet()
[all …]
H A DMultimapsCollectionTest.java98 static void populateMultimapForGet(Multimap<Integer, String> multimap, String[] elements) { in populateMultimapForGet()
105 static void populateMultimapForKeySet(Multimap<String, Integer> multimap, String[] elements) { in populateMultimapForKeySet()
112 static void populateMultimapForValues(Multimap<Integer, String> multimap, String[] elements) { in populateMultimapForValues()
118 static void populateMultimapForKeys(Multimap<String, Integer> multimap, String[] elements) { in populateMultimapForKeys()
157 protected Multimap<K, V> delegate() { in delegate()
186 Multimap<String, Integer> multimap = createMultimap(); in create()
195 abstract Multimap<String, Integer> createMultimap(); in createMultimap()
305 abstract static class TransformedMultimapGenerator<M extends Multimap<String, String>>
345 Multimap<String, String> multimap = ArrayListMultimap.create(); in create()
354 abstract M transform(Multimap<String, String> multimap); in transform()
[all …]
/aosp_15_r20/external/truth/core/src/main/java/com/google/common/truth/
H A DMultimapSubject.java37 import com.google.common.collect.Multimap;
62 private final @Nullable Multimap<?, ?> actual;
68 protected MultimapSubject(FailureMetadata metadata, @Nullable Multimap<?, ?> multimap) { in MultimapSubject() argument
74 @Nullable Multimap<?, ?> multimap, in MultimapSubject() argument
179 .that(((Multimap<@Nullable Object, @Nullable Object>) checkNotNull(actual)).get(key)); in valuesForKey()
204 containsExactlyEntriesIn((Multimap<?, ?>) checkNotNull(other)).inOrder(); in isEqualTo()
206 containsExactlyEntriesIn((Multimap<?, ?>) checkNotNull(other)); in isEqualTo()
221 public final Ordered containsExactlyEntriesIn(Multimap<?, ?> expectedMultimap) { in containsExactlyEntriesIn() argument
277 public final Ordered containsAtLeastEntriesIn(Multimap<?, ?> expectedMultimap) { in containsAtLeastEntriesIn() argument
368 private final Multimap<?, ?> expectedMultimap;
[all …]
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
H A DUnitPreferences.java9 import com.google.common.collect.Multimap;
26 Map<String, Map<String, Multimap<Set<String>, UnitPreference>>> quantityToUsageToRegionsToInfo =
90 Map<String, Multimap<Set<String>, UnitPreference>> usageToRegionsToInfo = in add()
95 Multimap<Set<String>, UnitPreference> regionsToInfo = usageToRegionsToInfo.get(usage); in add()
135 public Map<String, Map<String, Multimap<Set<String>, UnitPreference>>> getData() { in getData()
145 for (Entry<String, Map<String, Multimap<Set<String>, UnitPreference>>> entry1 : in toString()
148 for (Entry<String, Multimap<Set<String>, UnitPreference>> entry2 : in toString()
205 private Map<String, Map<String, Multimap<String, UnitPreference>>> getRawFastMap() { in getRawFastMap()
207 Map<String, Map<String, Multimap<String, UnitPreference>>> result = new LinkedHashMap<>(); in getRawFastMap()
208 for (Entry<String, Map<String, Multimap<Set<String>, UnitPreference>>> entry1 : in getRawFastMap()
[all …]
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/
H A DMultimaps.java120 M extends Multimap<K, V>>
165 M extends Multimap<K, V>>
210 public static <K extends @Nullable Object, V extends @Nullable Object> Multimap<K, V> newMultimap( in newMultimap()
600 public static <K extends @Nullable Object, V extends @Nullable Object, M extends Multimap<K, V>>
601 M invertFrom(Multimap<? extends V, ? extends K> source, M dest) { in invertFrom()
643 Multimap<K, V> synchronizedMultimap(Multimap<K, V> multimap) { in synchronizedMultimap()
659 Multimap<K, V> unmodifiableMultimap(Multimap<K, V> delegate) { in unmodifiableMultimap()
673 public static <K, V> Multimap<K, V> unmodifiableMultimap(ImmutableMultimap<K, V> delegate) { in unmodifiableMultimap()
679 final Multimap<K, V> delegate;
686 UnmodifiableMultimap(final Multimap<K, V> delegate) { in UnmodifiableMultimap()
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/
H A DMultimaps.java119 M extends Multimap<K, V>>
166 M extends Multimap<K, V>>
211 public static <K extends @Nullable Object, V extends @Nullable Object> Multimap<K, V> newMultimap( in newMultimap()
601 public static <K extends @Nullable Object, V extends @Nullable Object, M extends Multimap<K, V>>
602 M invertFrom(Multimap<? extends V, ? extends K> source, M dest) { in invertFrom()
644 Multimap<K, V> synchronizedMultimap(Multimap<K, V> multimap) { in synchronizedMultimap()
660 Multimap<K, V> unmodifiableMultimap(Multimap<K, V> delegate) { in unmodifiableMultimap()
674 public static <K, V> Multimap<K, V> unmodifiableMultimap(ImmutableMultimap<K, V> delegate) { in unmodifiableMultimap()
680 final Multimap<K, V> delegate;
687 UnmodifiableMultimap(final Multimap<K, V> delegate) { in UnmodifiableMultimap()
[all …]
/aosp_15_r20/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapPutAllMultimapTester.java25 import com.google.common.collect.Multimap;
40 extends AbstractMultimapTester<K, V, Multimap<K, V>> {
52 Multimap<K, V> target = getSubjectGenerator().create(); in testPutAllIntoEmpty()
59 Multimap<K, V> source = in testPutAll()
68 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(k0(), null)); in testPutAllWithNullValue()
75 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(null, v0())); in testPutAllWithNullKey()
82 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(k0(), null)); in testPutAllRejectsNullValue()
93 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(null, v0())); in testPutAllRejectsNullKey()
104 Multimap<K, V> source = in testPutAllPropagatesToGet()
/aosp_15_r20/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapPutAllMultimapTester.java25 import com.google.common.collect.Multimap;
40 extends AbstractMultimapTester<K, V, Multimap<K, V>> {
52 Multimap<K, V> target = getSubjectGenerator().create(); in testPutAllIntoEmpty()
59 Multimap<K, V> source = in testPutAll()
68 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(k0(), null)); in testPutAllWithNullValue()
75 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(null, v0())); in testPutAllWithNullKey()
82 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(k0(), null)); in testPutAllRejectsNullValue()
93 Multimap<K, V> source = getSubjectGenerator().create(Helpers.mapEntry(null, v0())); in testPutAllRejectsNullKey()
104 Multimap<K, V> source = in testPutAllPropagatesToGet()
/aosp_15_r20/cts/hostsidetests/appcompat/strictjavapackages/src/android/compat/sjp/cts/
H A DStrictJavaPackagesTest.java51 import com.google.common.collect.Multimap;
639 private String prettyPrint(Multimap<String, String> classesToJars) { in prettyPrint()
673 HashMultimap<String, Multimap<String, String>> apkToJarToClasses) { in prettyPrint()
716 Multimap<String, String> duplicates = getDuplicateClasses(sSystemserverclasspathJars); in testSystemServerClasspath_nonDuplicateClasses()
717 Multimap<String, String> filtered = Multimaps.filterKeys(duplicates, in testSystemServerClasspath_nonDuplicateClasses()
747 Multimap<String, String> duplicates = getDuplicateClasses(jars.build()); in testBootClasspathAndSystemServerClasspath_nonDuplicateClasses()
748 Multimap<String, String> filtered = Multimaps.filterKeys(duplicates, in testBootClasspathAndSystemServerClasspath_nonDuplicateClasses()
762 Multimap<String, String> duplicates = getDuplicateClasses(sBootclasspathJars); in testBootClasspath_nonDuplicateApexJarClasses()
763 Multimap<String, String> filtered = in testBootClasspath_nonDuplicateApexJarClasses()
776 Multimap<String, String> duplicates = getDuplicateClasses(sSystemserverclasspathJars); in testSystemServerClasspath_nonDuplicateApexJarClasses()
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DXCldrStub.java41 public static class Multimap<K, V> { class in XCldrStub
46 private Multimap(Map<K,Set<V>> map, Class<?> setClass) { in Multimap() method in XCldrStub.Multimap
54 public final Multimap<K, V> putAll(K key, V... values) { in putAll()
70 public void putAll(Multimap<K, V> source) { in putAll()
124 && map.equals(((Multimap<?,?>) obj).map)); in equals()
137 … public static <K, V, R extends Multimap<K, V>> R invertFrom(Multimap<V, K> source, R target) { in invertFrom()
143 public static <K, V, R extends Multimap<K, V>> R invertFrom(Map<V, K> source, R target) { in invertFrom()
210 public static class HashMultimap<K, V> extends Multimap<K, V> {
222 public static class TreeMultimap<K, V> extends Multimap<K, V> {
234 public static class LinkedHashMultimap<K, V> extends Multimap<K, V> {
[all …]
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/
H A DXCldrStub.java36 public static class Multimap<K, V> { class in XCldrStub
41 private Multimap(Map<K,Set<V>> map, Class<?> setClass) { in Multimap() method in XCldrStub.Multimap
49 public final Multimap<K, V> putAll(K key, V... values) { in putAll()
65 public void putAll(Multimap<K, V> source) { in putAll()
119 && map.equals(((Multimap<?,?>) obj).map)); in equals()
129 … public static <K, V, R extends Multimap<K, V>> R invertFrom(Multimap<V, K> source, R target) { in invertFrom()
135 public static <K, V, R extends Multimap<K, V>> R invertFrom(Map<V, K> source, R target) { in invertFrom()
199 public static class HashMultimap<K, V> extends Multimap<K, V> {
208 public static class TreeMultimap<K, V> extends Multimap<K, V> {
217 public static class LinkedHashMultimap<K, V> extends Multimap<K, V> {
[all …]
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
H A DShowPathHeaderDescriptions.java5 import com.google.common.collect.Multimap;
84 Multimap<SectionId, String> sv = TreeMultimap.create(); in showDescriptions()
85 Multimap<PageId, String> pv = TreeMultimap.create(); in showDescriptions()
86 Multimap<String, String> hv = TreeMultimap.create(); in showDescriptions()
88 Multimap<R2<SectionId, PageId>, String> spv = TreeMultimap.create(); in showDescriptions()
89 Multimap<R2<SectionId, String>, String> shv = TreeMultimap.create(); in showDescriptions()
90 Multimap<R2<PageId, String>, String> phv = TreeMultimap.create(); in showDescriptions()
92 Multimap<R3<SectionId, PageId, String>, String> sphv = TreeMultimap.create(); in showDescriptions()
93 Multimap<String, R3<SectionId, PageId, String>> valueToKey = TreeMultimap.create(); in showDescriptions()
149 Set<String> done, Multimap<String, R3<SectionId, PageId, String>> valueToKey) { in showProgress()
[all …]

12345678910>>...29