/external/guava/guava/src/com/google/common/collect/ |
H A D | BiMap.java | 44 * event. To avoid this exception, call {@link #forcePut} instead. 66 V forcePut(@Nullable K key, @Nullable V value); method in interface:BiMap
|
H A D | HashBiMap.java | 88 @Override public V forcePut(@Nullable K key, @Nullable V value) { method in class:HashBiMap 89 return super.forcePut(key, value);
|
H A D | EnumHashBiMap.java | 86 @Override public V forcePut(K key, @Nullable V value) { method in class:EnumHashBiMap 87 return super.forcePut(key, value);
|
H A D | ImmutableBiMap.java | 260 public V forcePut(K key, V value) { method in class:ImmutableBiMap
|
H A D | AbstractBiMap.java | 100 public V forcePut(K key, V value) { method in class:AbstractBiMap
|
H A D | MapConstraints.java | 364 public V forcePut(K key, V value) { method in class:MapConstraints.ConstrainedBiMap 366 return delegate().forcePut(key, value);
|
H A D | Synchronized.java | 1131 public V forcePut(K key, V value) { method in class:Synchronized.SynchronizedBiMap 1133 return delegate().forcePut(key, value);
|
H A D | Maps.java | 883 public V forcePut(K key, V value) { method in class:Maps.UnmodifiableBiMap
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | EnumHashBiMap.java | 81 @Override public V forcePut(K key, @Nullable V value) { method in class:EnumHashBiMap 82 return super.forcePut(key, value);
|
H A D | HashBiMap.java | 84 @Override public V forcePut(@Nullable K key, @Nullable V value) { method in class:HashBiMap 85 return super.forcePut(key, value);
|
H A D | ImmutableBiMap.java | 118 public final V forcePut(K key, V value) { method in class:ImmutableBiMap
|
H A D | AbstractBiMap.java | 96 public V forcePut(K key, V value) { method in class:AbstractBiMap
|
H A D | Synchronized.java | 1118 public V forcePut(K key, V value) { method in class:Synchronized.SynchronizedBiMap 1120 return delegate().forcePut(key, value);
|
H A D | Maps.java | 854 public V forcePut(K key, V value) { method in class:Maps.UnmodifiableBiMap
|
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | SynchronizedBiMapTest.java | 55 public V forcePut(K key, V value) { method in class:SynchronizedBiMapTest.TestBiMap 57 return delegate.forcePut(key, value); 75 create().forcePut(null, null);
|
H A D | AbstractBiMapTest.java | 107 bimap.forcePut(null, null); 193 assertNull(bimap.forcePut(1, "one")); 195 assertEquals("one", bimap.forcePut(1, "one")); 197 assertEquals("one", bimap.forcePut(1, "ONE")); 199 assertNull(bimap.forcePut(-1, "ONE")); // key 1 disappears without a trace 201 assertNull(bimap.forcePut(2, "two")); 203 assertEquals("two", bimap.forcePut(2, "ONE")); 236 bimap.forcePut(1, "two");
|
H A D | EnumHashBiMapTest.java | 152 bimap.forcePut(Currency.PESO, "dollar");
|
H A D | MapConstraintsTest.java | 196 constrained.forcePut(TEST_KEY, 3); 200 constrained.inverse().forcePut(TEST_VALUE, "baz"); 204 constrained.inverse().forcePut(3, TEST_KEY);
|
H A D | ImmutableBiMapTest.java | 495 bimap.forcePut("three", 3);
|
H A D | MapsTest.java | 827 unmod.forcePut(4, "four"); 842 inverse.forcePut("four", 4);
|