Searched refs:forcePut (Results 1 - 20 of 20) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DBiMap.java44 * event. To avoid this exception, call {@link #forcePut} instead.
66 V forcePut(@Nullable K key, @Nullable V value); method in interface:BiMap
H A DHashBiMap.java88 @Override public V forcePut(@Nullable K key, @Nullable V value) { method in class:HashBiMap
89 return super.forcePut(key, value);
H A DEnumHashBiMap.java86 @Override public V forcePut(K key, @Nullable V value) { method in class:EnumHashBiMap
87 return super.forcePut(key, value);
H A DImmutableBiMap.java260 public V forcePut(K key, V value) { method in class:ImmutableBiMap
H A DAbstractBiMap.java100 public V forcePut(K key, V value) { method in class:AbstractBiMap
H A DMapConstraints.java364 public V forcePut(K key, V value) { method in class:MapConstraints.ConstrainedBiMap
366 return delegate().forcePut(key, value);
H A DSynchronized.java1131 public V forcePut(K key, V value) { method in class:Synchronized.SynchronizedBiMap
1133 return delegate().forcePut(key, value);
H A DMaps.java883 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 DEnumHashBiMap.java81 @Override public V forcePut(K key, @Nullable V value) { method in class:EnumHashBiMap
82 return super.forcePut(key, value);
H A DHashBiMap.java84 @Override public V forcePut(@Nullable K key, @Nullable V value) { method in class:HashBiMap
85 return super.forcePut(key, value);
H A DImmutableBiMap.java118 public final V forcePut(K key, V value) { method in class:ImmutableBiMap
H A DAbstractBiMap.java96 public V forcePut(K key, V value) { method in class:AbstractBiMap
H A DSynchronized.java1118 public V forcePut(K key, V value) { method in class:Synchronized.SynchronizedBiMap
1120 return delegate().forcePut(key, value);
H A DMaps.java854 public V forcePut(K key, V value) { method in class:Maps.UnmodifiableBiMap
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedBiMapTest.java55 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 DAbstractBiMapTest.java107 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 DEnumHashBiMapTest.java152 bimap.forcePut(Currency.PESO, "dollar");
H A DMapConstraintsTest.java196 constrained.forcePut(TEST_KEY, 3);
200 constrained.inverse().forcePut(TEST_VALUE, "baz");
204 constrained.inverse().forcePut(3, TEST_KEY);
H A DImmutableBiMapTest.java495 bimap.forcePut("three", 3);
H A DMapsTest.java827 unmod.forcePut(4, "four");
842 inverse.forcePut("four", 4);

Completed in 965 milliseconds