Home
last modified time | relevance | path

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

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DHashBiMap.java78 @Override public V forcePut(@Nullable K key, @Nullable V value) { in forcePut() method in HashBiMap
79 return super.forcePut(key, value); in forcePut()
DEnumHashBiMap.java92 @Override public V forcePut(K key, @Nullable V value) { in forcePut() method in EnumHashBiMap
93 return super.forcePut(key, value); in forcePut()
DImmutableBiMap.java117 public final V forcePut(K key, V value) { in forcePut() method in ImmutableBiMap
DAbstractBiMap.java111 public V forcePut(@Nullable K key, @Nullable V value) { in forcePut() method in AbstractBiMap
DSynchronized.java1120 public V forcePut(K key, V value) {
1122 return delegate().forcePut(key, value);
DMaps.java1232 public V forcePut(K key, V value) {
2381 public V forcePut(@Nullable K key, @Nullable V value) {
2383 return unfiltered().forcePut(key, value);
/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedBiMapTest.java113 public V forcePut(K key, V value) { in forcePut() method in SynchronizedBiMapTest.TestBiMap
115 return delegate.forcePut(key, value); in forcePut()
133 create().forcePut(null, null); 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.java438 bimap.forcePut("three", 3); in testForcePut()
DMapsTest.java1234 unmod.forcePut(4, "four"); in testUnmodifiableBiMap()
1249 inverse.forcePut("four", 4); in testUnmodifiableBiMap()
/external/guava/guava/src/com/google/common/collect/
DEnumHashBiMap.java97 @Override public V forcePut(K key, @Nullable V value) { in forcePut() method in EnumHashBiMap
98 return super.forcePut(key, value); in forcePut()
DBiMap.java70 V forcePut(@Nullable K key, @Nullable V value); in forcePut() method
DImmutableBiMap.java243 public V forcePut(K key, V value) { in forcePut() method in ImmutableBiMap
DHashBiMap.java219 public V forcePut(@Nullable K key, @Nullable V value) { in forcePut() method in HashBiMap
518 public K forcePut(@Nullable V value, @Nullable K key) {
DMapConstraints.java365 public V forcePut(K key, V value) {
367 return delegate().forcePut(key, value);
DAbstractBiMap.java115 public V forcePut(@Nullable K key, @Nullable V value) { in forcePut() method in AbstractBiMap
DSynchronized.java1136 public V forcePut(K key, V value) {
1138 return delegate().forcePut(key, value);
DMaps.java1434 public V forcePut(K key, V value) {
3062 public V forcePut(@Nullable K key, @Nullable V value) {
3064 return unfiltered().forcePut(key, value);
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DBiMapPutTester.java82 getMap().forcePut(k1, v0); in testForcePutOverwritesOldValueEntry()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
DPackageResourceTable.java134 resourceTable.forcePut(oldId, resName); in addResource()
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DMapConstraintsTest.java194 constrained.forcePut(TEST_KEY, 3); in testConstrainedBiMapIllegal()
198 constrained.inverse().forcePut(TEST_VALUE, "baz"); in testConstrainedBiMapIllegal()
202 constrained.inverse().forcePut(3, TEST_KEY); in testConstrainedBiMapIllegal()
DImmutableBiMapTest.java397 bimap.forcePut("three", 3); in testForcePut()
DMapsTest.java926 unmod.forcePut(4, "four"); in testUnmodifiableBiMap()
941 inverse.forcePut("four", 4); in testUnmodifiableBiMap()