Searched defs:IdentityHashMap (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DIdentityHashMap.java26 * IdentityHashMap is a variant on HashMap which tests equality by reference
34 * IdentityHashMap uses open addressing (linear probing in particular) for
37 * Like HashMap, IdentityHashMap is not thread safe, so access by multiple
43 public class IdentityHashMap<K, V> extends AbstractMap<K, V> implements class in inherits:AbstractMap,Map,Serializable,Cloneable
64 * default threshold value that an IdentityHashMap created using the default
74 * IdentityHashMap and the iterator
86 private final IdentityHashMap<K,V> map;
88 IdentityHashMapEntry(IdentityHashMap<K,V> map, K theKey, V theValue) {
135 final IdentityHashMap<KT, VT> associatedMap;
144 IdentityHashMap<K
252 public IdentityHashMap() { method in class:IdentityHashMap
263 public IdentityHashMap(int maxSize) { method in class:IdentityHashMap
303 public IdentityHashMap(Map<? extends K, ? extends V> map) { method in class:IdentityHashMap
[all...]

Completed in 61 milliseconds