Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSoftCache.java39 SettableSoftReference<V> valueRef = map.get(key); in getInstance()
62 valueRef = map.putIfAbsent(key, new SettableSoftReference<V>(value)); in getInstance()
81 private static final class SettableSoftReference<V> { class in SoftCache
82 private SettableSoftReference(V value) { in SettableSoftReference() method in SoftCache.SettableSoftReference
103 private ConcurrentHashMap<K, SettableSoftReference<V>> map =
104 new ConcurrentHashMap<K, SettableSoftReference<V>>();