Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/reflect/
DWeakCache.java105 Object cacheKey = CacheKey.valueOf(key, refQueue); in get()
188 CacheKey<K> cacheKey; in expungeStaleEntries()
189 while ((cacheKey = (CacheKey<K>)refQueue.poll()) != null) { in expungeStaleEntries()
327 private static final class CacheKey<K> extends WeakReference<K> { class in WeakCache
338 : new CacheKey<>(key, refQueue); in valueOf()
343 private CacheKey(K key, ReferenceQueue<K> refQueue) { in CacheKey() method in WeakCache.CacheKey
362 key == ((CacheKey<K>) obj).get(); in equals()
/libcore/ojluni/src/main/java/java/util/
DResourceBundle.java355 private static final ConcurrentMap<CacheKey, BundleReference> cacheList
407 private volatile CacheKey cacheKey;
588 private static final class CacheKey { class in ResourceBundle
631 CacheKey(String baseName, Locale locale, ClassLoader loader) { in CacheKey() method in ResourceBundle.CacheKey
647 CacheKey(CacheKey src) { in CacheKey() method in ResourceBundle.CacheKey
681 CacheKey setLocale(Locale locale) { in setLocale()
723 final CacheKey otherEntry = (CacheKey)other; in equals()
822 public CacheKey getCacheKey(); in getCacheKey()
831 private final CacheKey cacheKey;
833 KeyElementReference(T referent, ReferenceQueue<Object> q, CacheKey key) { in KeyElementReference()
[all …]