Searched refs:ImmutableListMultimap (Results 1 - 18 of 18) sorted by relevance

/external/guava/guava-gwt/src/com/google/common/collect/
H A DImmutableListMultimap_CustomFieldSerializer.java24 * This class implements the GWT serialization of {@link ImmutableListMultimap}.
31 ImmutableListMultimap<?, ?> instance) {
34 public static ImmutableListMultimap<Object, Object> instantiate(
36 return (ImmutableListMultimap<Object, Object>)
38 reader, ImmutableListMultimap.builder());
42 ImmutableListMultimap<?, ?> instance) throws SerializationException {
H A DGwtSerializationDependencies.java63 extends ImmutableListMultimap<K, V> {
74 // ImmutableMultimap is covered by ImmutableSetMultimap/ImmutableListMultimap.
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableListMultimapTest.java23 import com.google.common.collect.ImmutableListMultimap.Builder;
36 * Tests for {@link ImmutableListMultimap}.
44 ImmutableListMultimap<String, Integer> multimap = new Builder<String, Integer>()
69 ImmutableListMultimap.Builder<String, Integer> builder =
88 ImmutableListMultimap.Builder<String, Integer> builder
89 = ImmutableListMultimap.builder();
100 ImmutableListMultimap.Builder<String, Integer> builder
101 = ImmutableListMultimap.builder();
121 ImmutableListMultimap.Builder<String, Integer> builder
122 = ImmutableListMultimap
[all...]
H A DImmutableMultimapTest.java92 ImmutableListMultimap<String, String> listMultimap
93 = ImmutableListMultimap.of("k1", "v1");
96 assertSame("copyOf(ImmutableListMultimap) should not create a new instance",
H A DMultimapCollectionTest.java356 ImmutableListMultimap.Builder<Integer, String> builder
357 = ImmutableListMultimap.builder();
365 .named("ImmutableListMultimap.get")
460 ImmutableListMultimap.Builder<String, Integer> builder
461 = ImmutableListMultimap.builder();
470 .named("ImmutableListMultimap.keySet")
570 ImmutableListMultimap.Builder<Integer, String> builder
571 = ImmutableListMultimap.builder();
578 .named("ImmutableListMultimap.values")
687 ImmutableListMultimap
[all...]
H A DMultimapsTest.java86 ImmutableListMultimap<String, Integer> immutable =
87 ImmutableListMultimap.of("a", 1, "b", 2, "a", 3);
398 = new ImmutableListMultimap.Builder<String, Integer>()
752 new ImmutableListMultimap.Builder<Integer, String>()
828 ImmutableListMultimap.of("a", 2, "b", -3, "b", 3, "a", 4, "c", 6);
862 ImmutableListMultimap.of("a", 1, "a", 4, "b", 6, "a", 4);
873 ImmutableListMultimap.of("a", "a1", "a", "a4", "a", "a4", "b", "b6"),
882 tester.setDefault(ListMultimap.class, ImmutableListMultimap.of());
H A DFauxveridesTest.java55 ImmutableListMultimap.class, ImmutableMultimap.class);
/external/guava/guava/src/com/google/common/collect/
H A DImmutableListMultimap.java39 * {@code ImmutableListMultimap} contains its own data and will <i>never</i>
40 * change. {@code ImmutableListMultimap} is convenient for
53 public class ImmutableListMultimap<K, V> class in inherits:ImmutableMultimap,ListMultimap
60 public static <K, V> ImmutableListMultimap<K, V> of() {
61 return (ImmutableListMultimap<K, V>) EmptyImmutableListMultimap.INSTANCE;
67 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) {
68 ImmutableListMultimap.Builder<K, V> builder
69 = ImmutableListMultimap.builder();
77 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) {
78 ImmutableListMultimap
268 ImmutableListMultimap(ImmutableMap<K, ImmutableList<V>> map, int size) { method in class:ImmutableListMultimap
[all...]
H A DEmptyImmutableListMultimap.java22 * Implementation of {@link ImmutableListMultimap} with no entries.
27 class EmptyImmutableListMultimap extends ImmutableListMultimap<Object, Object> {
H A DImmutableMultimap.java66 return ImmutableListMultimap.of();
73 return ImmutableListMultimap.of(k1, v1);
80 return ImmutableListMultimap.of(k1, v1, k2, v2);
88 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3);
96 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4);
104 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5);
297 return ImmutableListMultimap.copyOf(multimap);
H A DMultimaps.java864 delegate instanceof ImmutableListMultimap) {
877 ImmutableListMultimap<K, V> delegate) {
1599 * = ImmutableListMultimap.of("a", 4, "a", 16, "b", 9);
1741 * Creates an index {@code ImmutableListMultimap} that contains the results of
1768 * ImmutableListMultimap}
1770 * @return {@code ImmutableListMultimap} mapping the result of evaluating the
1782 public static <K, V> ImmutableListMultimap<K, V> index(
1799 ImmutableListMultimap<K, V> index(
1806 * Creates an index {@code ImmutableListMultimap} that contains the results of
1833 * ImmutableListMultimap}
876 unmodifiableListMultimap( ImmutableListMultimap<K, V> delegate) argument
[all...]
H A DSynchronized.java688 multimap instanceof ImmutableListMultimap) {
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableListMultimap.java34 * {@code ImmutableListMultimap} contains its own data and will <i>never</i>
35 * change. {@code ImmutableListMultimap} is convenient for
48 public class ImmutableListMultimap<K, V> class in inherits:ImmutableMultimap,ListMultimap
55 public static <K, V> ImmutableListMultimap<K, V> of() {
56 return (ImmutableListMultimap<K, V>) EmptyImmutableListMultimap.INSTANCE;
62 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) {
63 ImmutableListMultimap.Builder<K, V> builder
64 = ImmutableListMultimap.builder();
72 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) {
73 ImmutableListMultimap
263 ImmutableListMultimap(ImmutableMap<K, ImmutableList<V>> map, int size) { method in class:ImmutableListMultimap
[all...]
H A DImmutableMultimap.java65 return ImmutableListMultimap.of();
72 return ImmutableListMultimap.of(k1, v1);
79 return ImmutableListMultimap.of(k1, v1, k2, v2);
87 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3);
95 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4);
103 return ImmutableListMultimap.of(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5);
296 return ImmutableListMultimap.copyOf(multimap);
H A DMultimaps.java775 delegate instanceof ImmutableListMultimap) {
788 ImmutableListMultimap<K, V> delegate) {
1510 * = ImmutableListMultimap.of("a", 4, "a", 16, "b", 9);
1652 * Creates an index {@code ImmutableListMultimap} that contains the results of
1679 * ImmutableListMultimap}
1681 * @return {@code ImmutableListMultimap} mapping the result of evaluating the
1693 public static <K, V> ImmutableListMultimap<K, V> index(
1710 ImmutableListMultimap<K, V> index(
1717 * Creates an index {@code ImmutableListMultimap} that contains the results of
1744 * ImmutableListMultimap}
787 unmodifiableListMultimap( ImmutableListMultimap<K, V> delegate) argument
[all...]
H A DSynchronized.java675 multimap instanceof ImmutableListMultimap) {
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 323 milliseconds