HomeSort by relevance Sort by last modified time
    Searched defs:forcePut (Results 1 - 17 of 17) sorted by null

  /external/guava/guava/src/com/google/common/collect/
BiMap.java 44 * event. To avoid this exception, call {@link #forcePut} instead.
66 V forcePut(@Nullable K key, @Nullable V value);
EnumHashBiMap.java 86 @Override public V forcePut(K key, @Nullable V value) {
87 return super.forcePut(key, value);
HashBiMap.java 88 @Override public V forcePut(@Nullable K key, @Nullable V value) {
89 return super.forcePut(key, value);
ImmutableBiMap.java 260 public V forcePut(K key, V value) {
AbstractBiMap.java 100 public V forcePut(K key, V value) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EnumHashBiMap.java 81 @Override public V forcePut(K key, @Nullable V value) {
82 return super.forcePut(key, value);
HashBiMap.java 84 @Override public V forcePut(@Nullable K key, @Nullable V value) {
85 return super.forcePut(key, value);
ImmutableBiMap.java 118 public final V forcePut(K key, V value) {
AbstractBiMap.java 96 public V forcePut(K key, V value) {
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedBiMapTest.java 55 public V forcePut(K key, V value) {
57 return delegate.forcePut(key, value);
75 create().forcePut(null, null);
EnumHashBiMapTest.java 152 bimap.forcePut(Currency.PESO, "dollar");
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");
MapConstraintsTest.java 196 constrained.forcePut(TEST_KEY, 3);
200 constrained.inverse().forcePut(TEST_VALUE, "baz");
204 constrained.inverse().forcePut(3, TEST_KEY);
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 

Completed in 108 milliseconds