Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DResourceBundle.java307 private static final ConcurrentMap<CacheKey, BundleReference> cacheList
359 private volatile CacheKey cacheKey;
538 private static class CacheKey implements Cloneable { class in ResourceBundle
565 CacheKey(String baseName, Locale locale, ClassLoader loader) { in CacheKey() method in ResourceBundle.CacheKey
580 CacheKey setName(String baseName) { in setName()
592 CacheKey setLocale(Locale locale) { in setLocale()
609 final CacheKey otherEntry = (CacheKey)other; in equals()
653 CacheKey clone = (CacheKey) super.clone(); in clone()
710 public CacheKey getCacheKey(); in getCacheKey()
720 private CacheKey cacheKey;
[all …]
/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()