Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedBiMapTest.java55 public V forcePut(K key, V value) { in forcePut() method in SynchronizedBiMapTest.TestBiMap
57 return delegate.forcePut(key, value); in forcePut()
75 create().forcePut(null, null); in testForcePut()
DAbstractBiMapTest.java107 bimap.forcePut(null, null); in testGet()
193 assertNull(bimap.forcePut(1, "one")); in testForcePut()
195 assertEquals("one", bimap.forcePut(1, "one")); in testForcePut()
197 assertEquals("one", bimap.forcePut(1, "ONE")); in testForcePut()
199 assertNull(bimap.forcePut(-1, "ONE")); // key 1 disappears without a trace in testForcePut()
201 assertNull(bimap.forcePut(2, "two")); in testForcePut()
203 assertEquals("two", bimap.forcePut(2, "ONE")); in testForcePut()
236 bimap.forcePut(1, "two"); in testSize()
DEnumHashBiMapTest.java152 bimap.forcePut(Currency.PESO, "dollar"); in testForcePut()
DMapConstraintsTest.java196 constrained.forcePut(TEST_KEY, 3); in testConstrainedBiMapIllegal()
200 constrained.inverse().forcePut(TEST_VALUE, "baz"); in testConstrainedBiMapIllegal()
204 constrained.inverse().forcePut(3, TEST_KEY); in testConstrainedBiMapIllegal()
DImmutableBiMapTest.java495 bimap.forcePut("three", 3); in testForcePut()
DMapsTest.java827 unmod.forcePut(4, "four");
842 inverse.forcePut("four", 4);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DHashBiMap.java84 @Override public V forcePut(@Nullable K key, @Nullable V value) { in forcePut() method in HashBiMap
85 return super.forcePut(key, value); in forcePut()
DEnumHashBiMap.java81 @Override public V forcePut(K key, @Nullable V value) { in forcePut() method in EnumHashBiMap
82 return super.forcePut(key, value); in forcePut()
DImmutableBiMap.java118 public final V forcePut(K key, V value) { in forcePut() method in ImmutableBiMap
DAbstractBiMap.java96 public V forcePut(K key, V value) { in forcePut() method in AbstractBiMap
DSynchronized.java1118 public V forcePut(K key, V value) {
1120 return delegate().forcePut(key, value);
DMaps.java854 public V forcePut(K key, V value) {
/external/guava/guava/src/com/google/common/collect/
DHashBiMap.java88 @Override public V forcePut(@Nullable K key, @Nullable V value) { in forcePut() method in HashBiMap
89 return super.forcePut(key, value); in forcePut()
DEnumHashBiMap.java86 @Override public V forcePut(K key, @Nullable V value) { in forcePut() method in EnumHashBiMap
87 return super.forcePut(key, value); in forcePut()
DBiMap.java66 V forcePut(@Nullable K key, @Nullable V value); in forcePut() method
DImmutableBiMap.java260 public V forcePut(K key, V value) { in forcePut() method in ImmutableBiMap
DMapConstraints.java364 public V forcePut(K key, V value) {
366 return delegate().forcePut(key, value);
DAbstractBiMap.java100 public V forcePut(K key, V value) { in forcePut() method in AbstractBiMap
DSynchronized.java1131 public V forcePut(K key, V value) {
1133 return delegate().forcePut(key, value);
DMaps.java883 public V forcePut(K key, V value) {