Lines Matching refs:CacheKey

293     private static final ConcurrentMap<CacheKey, BundleReference> cacheList
327 private volatile CacheKey cacheKey;
487 private static final class CacheKey implements Cloneable {
497 // These time values are in CacheKey so that NONEXISTENT_BUNDLE
514 CacheKey(String baseName, Locale locale, ClassLoader loader) {
529 CacheKey setName(String baseName) {
541 CacheKey setLocale(Locale locale) {
558 final CacheKey otherEntry = (CacheKey)other;
603 CacheKey clone = (CacheKey) super.clone();
650 return "CacheKey[" + name + ", lc=" + l + ", ldr=" + getLoader()
656 * The common interface to get a CacheKey in LoaderReference and
660 public CacheKey getCacheKey();
670 private CacheKey cacheKey;
672 LoaderReference(ClassLoader referent, ReferenceQueue q, CacheKey key) {
677 public CacheKey getCacheKey() {
688 private CacheKey cacheKey;
690 BundleReference(ResourceBundle referent, ReferenceQueue q, CacheKey key) {
695 public CacheKey getCacheKey() {
1255 // We create a CacheKey here for use by this call. The base
1259 CacheKey cacheKey = new CacheKey(baseName, locale, loader);
1345 private static final ResourceBundle findBundle(CacheKey cacheKey,
1397 CacheKey constKey = (CacheKey) cacheKey.clone();
1422 private static final ResourceBundle loadBundle(CacheKey cacheKey,
1476 CacheKey key = bundle.cacheKey;
1516 private static final ResourceBundle findBundleInCache(CacheKey cacheKey,
1568 CacheKey key = bundleRef.getCacheKey();
1623 private static final ResourceBundle putBundleInCache(CacheKey cacheKey,
1628 CacheKey key = (CacheKey) cacheKey.clone();
1656 private static final void setExpirationTime(CacheKey cacheKey, Control control) {
1697 Set<CacheKey> set = cacheList.keySet();
1698 for (CacheKey key : set) {