Searched defs:bimap (Results 1 - 15 of 15) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DImmutableBiMap.java31 * make a "defensive copy" of a bimap provided to your class by a caller.
45 * Returns the empty bimap.
54 * Returns an immutable bimap containing a single entry.
112 * A builder for creating immutable bimap instances, especially {@code public
126 * multiple times to build multiple bimaps in series. Each bimap is a superset
140 * Associates {@code key} with {@code value} in the built bimap. Duplicate
149 * Associates all of the given map's keys and values in the built bimap.
161 * Returns a newly-created immutable bimap.
178 * Returns an immutable bimap containing the same entries as {@code map}. If
194 ImmutableBiMap<K, V> bimap
257 SerializedForm(ImmutableBiMap<?, ?> bimap) argument
[all...]
H A DHashBiMap.java62 * Constructs a new, empty bimap with the specified expected size.
72 * Constructs a new bimap containing initial values from {@code map}. The bimap is created with an
76 HashBiMap<K, V> bimap = create(map.size());
77 bimap.putAll(map);
78 return bimap;
637 private final HashBiMap<K, V> bimap; field in class:HashBiMap.InverseSerializedForm
639 InverseSerializedForm(HashBiMap<K, V> bimap) { argument
640 this.bimap = bimap;
[all...]
H A DMaps.java1303 * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()},
1305 * {@link BiMap#inverse bimap.inverse()}{@code .get()}.
1314 public static <A, B> Converter<A, B> asConverter(final BiMap<A, B> bimap) { argument
1315 return new BiMapConverter<A, B>(bimap);
1319 private final BiMap<A, B> bimap; field in class:Maps.BiMapConverter
1321 BiMapConverter(BiMap<A, B> bimap) { argument
1322 this.bimap = checkNotNull(bimap);
1327 return convert(bimap, a);
1332 return convert(bimap
1335 convert(BiMap<X, Y> bimap, X input) argument
1392 synchronizedBiMap(BiMap<K, V> bimap) argument
1409 unmodifiableBiMap( BiMap<? extends K, ? extends V> bimap) argument
[all...]
H A DSynchronized.java1103 static <K, V> BiMap<K, V> biMap(BiMap<K, V> bimap, @Nullable Object mutex) { argument
1104 if (bimap instanceof SynchronizedBiMap ||
1105 bimap instanceof ImmutableBiMap) {
1106 return bimap;
1108 return new SynchronizedBiMap<K, V>(bimap, mutex, null);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSynchronized.java1087 static <K, V> BiMap<K, V> biMap(BiMap<K, V> bimap, @Nullable Object mutex) { argument
1088 if (bimap instanceof SynchronizedBiMap ||
1089 bimap instanceof ImmutableBiMap) {
1090 return bimap;
1092 return new SynchronizedBiMap<K, V>(bimap, mutex, null);
H A DMaps.java1101 * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()},
1103 * {@link BiMap#inverse bimap.inverse()}{@code .get()}.
1112 public static <A, B> Converter<A, B> asConverter(final BiMap<A, B> bimap) { argument
1113 return new BiMapConverter<A, B>(bimap);
1117 private final BiMap<A, B> bimap; field in class:Maps.BiMapConverter
1119 BiMapConverter(BiMap<A, B> bimap) { argument
1120 this.bimap = checkNotNull(bimap);
1125 return convert(bimap, a);
1130 return convert(bimap
1133 convert(BiMap<X, Y> bimap, X input) argument
1190 synchronizedBiMap(BiMap<K, V> bimap) argument
1207 unmodifiableBiMap( BiMap<? extends K, ? extends V> bimap) argument
[all...]
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/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/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/guice/lib/build/
H A Dguava-testlib-16.0.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/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 196 milliseconds