Home | History | Annotate | Download | only in collect

Lines Matching defs:newEntry

81  *   public InternalEntry<K, V> newEntry(K key, int hash,
318 abstract E newEntry(K key, int hash, E next);
394 * that was provided to {@link Strategy#newEntry} when the given entry was
398 * {@link Strategy#newEntry}
403 * Returns the hash code that was passed to {@link Strategy#newEntry})
472 * placeholder value in {@link #newEntry(Object, int, Object)} so that
959 E newEntry = s.newEntry(key, hash, first);
960 s.setValue(newEntry, value);
961 table.set(index, newEntry);
2033 entry = computingStrategy.newEntry(key, hash, first);
2106 public SimpleInternalEntry<K, V> newEntry(