HomeSort by relevance Sort by last modified time
    Searched refs:biMap (Results 1 - 9 of 9) sorted by null

  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedBiMapTest.java 27 * Tests for {@code Synchronized#biMap}.
39 @Override protected <K, V> BiMap<K, V> create() {
42 BiMap<K, V> outer = Synchronized.biMap(inner, mutex);
46 static class TestBiMap<K, V> extends TestMap<K, V> implements BiMap<K, V> {
47 private final BiMap<K, V> delegate;
49 public TestBiMap(BiMap<K, V> delegate, Object mutex) {
61 public BiMap<V, K> inverse() {
79 BiMap<String, Integer> bimap = create() local
    [all...]
AbstractBiMapTest.java 35 * Common tests for any {@code BiMap}.
42 protected abstract BiMap<Integer, String> create();
44 protected BiMap<Integer, String> bimap; field in class:AbstractBiMapTest
50 bimap = create();
51 entrySet = bimap.entrySet();
55 bimap.clear();
56 assertTrue(bimap.isEmpty());
58 bimap.clear();
59 assertTrue(bimap.isEmpty())
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Synchronized.java 1098 static <K, V> BiMap<K, V> biMap(BiMap<K, V> bimap, @Nullable Object mutex) {
1099 if (bimap instanceof SynchronizedBiMap ||
1100 bimap instanceof ImmutableBiMap) {
1101 return bimap;
1103 return new SynchronizedBiMap<K, V>(bimap, mutex, null);
1107 extends SynchronizedMap<K, V> implements BiMap<K, V>, Serializable {
1109 private transient BiMap<V, K> inverse
    [all...]
Maps.java 272 * Returns a synchronized (thread-safe) bimap backed by the specified bimap.
274 * to the backing bimap is accomplished through the returned bimap.
279 * BiMap<Long, String> map = Maps.synchronizedBiMap(
293 * <p>The returned bimap will be serializable if the specified bimap is
296 * @param bimap the bimap to be wrapped in a synchronized view
297 * @return a sychronized view of the specified bimap
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Synchronized.java 1085 static <K, V> BiMap<K, V> biMap(BiMap<K, V> bimap, @Nullable Object mutex) {
1086 if (bimap instanceof SynchronizedBiMap ||
1087 bimap instanceof ImmutableBiMap) {
1088 return bimap;
1090 return new SynchronizedBiMap<K, V>(bimap, mutex, null);
1094 extends SynchronizedMap<K, V> implements BiMap<K, V>, Serializable {
1096 private transient BiMap<V, K> inverse
    [all...]
Maps.java 269 * Returns a synchronized (thread-safe) bimap backed by the specified bimap.
271 * to the backing bimap is accomplished through the returned bimap.
276 * BiMap<Long, String> map = Maps.synchronizedBiMap(
290 * <p>The returned bimap will be serializable if the specified bimap is
293 * @param bimap the bimap to be wrapped in a synchronized view
294 * @return a sychronized view of the specified bimap
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 

Completed in 1911 milliseconds