Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DAnnotations.java91 private final Map<String, AnnotationSet> dirCache; field in Annotations.MyHandler
93 … public MyHandler(Map<String, AnnotationSet> dirCache, String locale, AnnotationSet parentData) { in MyHandler() argument
96 this.dirCache = dirCache; in MyHandler()
123 dirCache.put(locale, result); in cleanup()
581 Map<String, AnnotationSet> dirCache = cache.get(dir); in getDataSet() local
582 if (dirCache == null) { in getDataSet()
583 cache.put(dir, dirCache = new ConcurrentHashMap<>()); in getDataSet()
585 AnnotationSet result = dirCache.get(locale); in getDataSet()
597 MyHandler myHandler = new MyHandler(dirCache, locale, parentData); in getDataSet()