Searched defs:Multimap (Results 1 - 20 of 20) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DSerialization.java44 * #writeMultimap(Multimap, ObjectOutputStream)}.
144 * change while the method is running. The {@link Multimap#asMap} view
152 Multimap<K, V> multimap, ObjectOutputStream stream) throws IOException {
168 Multimap<K, V> multimap, ObjectInputStream stream)
180 Multimap<K, V> multimap, ObjectInputStream stream, int distinctKeys)
151 writeMultimap( Multimap<K, V> multimap, ObjectOutputStream stream) argument
167 populateMultimap( Multimap<K, V> multimap, ObjectInputStream stream) argument
179 populateMultimap( Multimap<K, V> multimap, ObjectInputStream stream, int distinctKeys) argument
H A DMultimap.java48 * multimaps are <i>implemented</i>, the design of the {@code Multimap} API is
98 * <p>Instead of using the {@code Multimap} interface directly, prefer the
108 * <p><b>Warning:</b> instances of type {@code Multimap} may not implement
146 * <p>As with {@code Map}, the behavior of a {@code Multimap} is not specified
149 * as keys in a {@code Multimap}.
157 * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Multimap">
158 * {@code Multimap}</a>.
164 public interface Multimap<K, V> { interface
172 * {@code asMap().size()}. See the opening section of the {@link Multimap}
250 boolean putAll(Multimap<
[all...]
H A DMapConstraints.java95 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
96 * {@link Multimap#replaceValues} methods return collections that are not
105 public static <K, V> Multimap<K, V> constrainedMultimap( argument
106 Multimap<K, V> multimap, MapConstraint<? super K, ? super V> constraint) {
116 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
117 * {@link Multimap#replaceValues} methods return collections that are not
138 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
139 * {@link Multimap#replaceValues} methods return collections that are not
159 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
160 * {@link Multimap#replaceValue
[all...]
H A DMultimaps.java52 * Provides static methods acting on or generating a {@code Multimap}.
69 * Creates a new {@code Multimap} backed by {@code map}, whose internal value
76 * {@link Multimap#equals}.
111 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map,
407 public static <K, V, M extends Multimap<K, V>> M invertFrom(
408 Multimap<? extends V, ? extends K> source, M dest) {
425 * Multimap<K, V> multimap = Multimaps.synchronizedMultimap(
439 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
440 * {@link Multimap#replaceValues} methods return collections that aren't
449 public static <K, V> Multimap< argument
471 unmodifiableMultimap( Multimap<K, V> delegate) argument
500 UnmodifiableMultimap(final Multimap<K, V> delegate) argument
1107 transformValues( Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) argument
1169 transformEntries( Multimap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1771 filterKeys( Multimap<K, V> unfiltered, final Predicate<? super K> keyPredicate) argument
1904 filterValues( Multimap<K, V> unfiltered, final Predicate<? super V> valuePredicate) argument
1972 filterEntries( Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DSynchronized.java505 static <K, V> Multimap<K, V> multimap( argument
506 Multimap<K, V> multimap, @Nullable Object mutex) {
515 implements Multimap<K, V> {
523 @Override Multimap<K, V> delegate() {
524 return (Multimap<K, V>) super.delegate();
527 SynchronizedMultimap(Multimap<K, V> delegate, @Nullable Object mutex) {
588 public boolean putAll(Multimap<? extends K, ? extends V> multimap) {
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DUnmodifiableCollectionTests.java28 import com.google.common.collect.Multimap;
270 Multimap<K, V> multimap, final K sampleKey, final V sampleValue) {
345 // Test #putAll(Multimap<K, V>)
346 Multimap<K, V> multimap2 = ArrayListMultimap.create();
350 fail("putAll(Multimap<K, V>) succeeded on unmodifiable multimap");
421 Multimap<K, V> expected, List<Entry<K, V>> actual) {
269 assertMultimapIsUnmodifiable( Multimap<K, V> multimap, final K sampleKey, final V sampleValue) argument
420 assertMultimapRemainsUnmodified( Multimap<K, V> expected, List<Entry<K, V>> actual) argument
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimapsTest.java105 Multimap<String, Integer> mod = HashMultimap.create();
106 Multimap<String, Integer> unmod = Multimaps.unmodifiableMultimap(mod);
111 assertSame(immutable, Multimaps.unmodifiableMultimap((Multimap<String, Integer>) immutable));
135 Multimap<String, Integer> mod = HashMultimap.create();
136 Multimap<String, Integer> unmod = Multimaps.unmodifiableMultimap(mod);
145 Multimap<String, Integer> mod = HashMultimap.create();
146 Multimap<String, Integer> unmod = Multimaps.unmodifiableMultimap(mod);
174 Multimap<String, Integer> multimap, boolean permitsDuplicates) {
184 Multimap<String, Integer> multimap, boolean permitsDuplicates,
186 Multimap<Strin
173 checkUnmodifiableMultimap( Multimap<String, Integer> multimap, boolean permitsDuplicates) argument
183 checkUnmodifiableMultimap( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
218 prepareUnmodifiableTests( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DBenchmarkHelpers.java84 <K, V> ListMultimap<K, V> create(Multimap<K, V> contents) {
90 <K, V> ListMultimap<K, V> create(Multimap<K, V> contents) {
96 <K, V> ListMultimap<K, V> create(Multimap<K, V> contents) {
101 abstract <K, V> ListMultimap<K, V> create(Multimap<K, V> contents);
108 Multimap<K, V> contents) {
115 Multimap<K, V> contents) {
122 Multimap<K, V> contents) {
129 Multimap<K, V> contents) {
135 Multimap<K, V> contents);
134 create( Multimap<K, V> contents) argument
H A DMultimapsCollectionTest.java100 Multimap<Integer, String> multimap, String[] elements) {
108 Multimap<String, Integer> multimap, String[] elements) {
116 Multimap<Integer, String> multimap, String[] elements) {
123 Multimap<String, Integer> multimap, String[] elements) {
130 * Implements {@code Multimap.put()} -- and no other methods -- for a {@code
133 * {@link MultimapsCollectionTest#populateMultimapForGet(Multimap, String[])}
162 @Override protected Multimap<K, V> delegate() {
190 Multimap<String, Integer> multimap = createMultimap();
199 abstract Multimap<String, Integer> createMultimap();
314 static abstract class TransformedMultimapGenerator<M extends Multimap<Strin
99 populateMultimapForGet( Multimap<Integer, String> multimap, String[] elements) argument
107 populateMultimapForKeySet( Multimap<String, Integer> multimap, String[] elements) argument
115 populateMultimapForValues( Multimap<Integer, String> multimap, String[] elements) argument
122 populateMultimapForKeys( Multimap<String, Integer> multimap, String[] elements) argument
[all...]
H A DMultimapsTest.java109 Multimap<String, Integer> mod = HashMultimap.create();
110 Multimap<String, Integer> unmod = Multimaps.unmodifiableMultimap(mod);
115 assertSame(immutable, Multimaps.unmodifiableMultimap((Multimap<String, Integer>) immutable));
126 Multimap<String, Integer> unmodifiable =
158 Multimap<String, Integer> unmodifiable =
171 Multimap<String, Integer> unmodifiable =
184 Multimap<String, Integer> unmodifiable =
198 Multimap<String, Integer> unmodifiable =
220 Multimap<String, Integer> unmodifiable =
227 Multimap<Strin
265 checkUnmodifiableMultimap( Multimap<String, Integer> multimap, boolean permitsDuplicates) argument
275 checkUnmodifiableMultimap( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
310 prepareUnmodifiableTests( Multimap<String, Integer> multimap, boolean permitsDuplicates, @Nullable String nullKey, @Nullable Integer nullValue) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimaps.java48 * Provides static methods acting on or generating a {@code Multimap}.
65 * Creates a new {@code Multimap} backed by {@code map}, whose internal value
72 * {@link Multimap#equals}.
107 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map,
318 public static <K, V, M extends Multimap<K, V>> M invertFrom(
319 Multimap<? extends V, ? extends K> source, M dest) {
336 * Multimap<K, V> multimap = Multimaps.synchronizedMultimap(
350 * <p>Note that the generated multimap's {@link Multimap#removeAll} and
351 * {@link Multimap#replaceValues} methods return collections that aren't
360 public static <K, V> Multimap< argument
382 unmodifiableMultimap( Multimap<K, V> delegate) argument
411 UnmodifiableMultimap(final Multimap<K, V> delegate) argument
1018 transformValues( Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) argument
1080 transformEntries( Multimap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1682 filterKeys( Multimap<K, V> unfiltered, final Predicate<? super K> keyPredicate) argument
1815 filterValues( Multimap<K, V> unfiltered, final Predicate<? super V> valuePredicate) argument
1883 filterEntries( Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DSynchronized.java489 static <K, V> Multimap<K, V> multimap( argument
490 Multimap<K, V> multimap, @Nullable Object mutex) {
499 implements Multimap<K, V> {
507 @Override Multimap<K, V> delegate() {
508 return (Multimap<K, V>) super.delegate();
511 SynchronizedMultimap(Multimap<K, V> delegate, @Nullable Object mutex) {
572 public boolean putAll(Multimap<? extends K, ? extends V> multimap) {
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 245 milliseconds