Searched refs:SoftEntry (Results 1 – 2 of 2) sorted by relevance
/external/emma/core/java12/com/vladium/util/ |
D | SoftValueMap.java | 93 m_buckets = new SoftEntry [initialCapacity]; in SoftValueMap() 163 final SoftEntry [] buckets = m_buckets; in get() 169 for (SoftEntry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in get() 228 SoftEntry currentKeyEntry = null; in put() 234 SoftEntry [] buckets = m_buckets; in put() 238 for (SoftEntry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) in put() 283 final SoftEntry bucketListHead = buckets [bucketIndex]; in put() 284 …final SoftEntry newEntry = new SoftEntry (m_valueReferenceQueue, key, value, bucketListHead, bucke… in put() 301 final SoftEntry [] buckets = m_buckets; in remove() 307 …for (SoftEntry entry = buckets [bucketIndex], prev = null; entry != null; prev = entry, entry = en… in remove() [all …]
|
/external/guava/src/com/google/common/collect/ |
D | MapMaker.java | 386 ? new SoftEntry<K, V>(internals, key, hash) in newEntry() 392 SoftEntry<K, V> from = (SoftEntry<K, V>) original; in copyEntry() 394 ? new SoftEntry<K, V>(from.internals, key, from.hash) in copyEntry() 934 private static class SoftEntry<K, V> extends FinalizableSoftReference<K> class in MapMaker 936 SoftEntry(Internals<K, V, ReferenceEntry<K, V>> internals, K key, in SoftEntry() method in MapMaker.SoftEntry 975 private static class LinkedSoftEntry<K, V> extends SoftEntry<K, V> {
|