HomeSort by relevance Sort by last modified time
    Searched refs:themedCache (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/content/res/
ConfigurationBoundResourceCache.java 56 LongSparseArray<WeakReference<ConstantState<T>>> themedCache;
58 themedCache = mCache.get(themeKey);
59 if (themedCache == null) {
60 themedCache = new LongSparseArray<WeakReference<ConstantState<T>>>(1);
61 mCache.put(themeKey, themedCache);
63 themedCache.put(key, new WeakReference<ConstantState<T>>(constantState));
78 final LongSparseArray<WeakReference<ConstantState<T>>> themedCache;
81 themedCache = mCache.get(themeKey);
82 if (themedCache == null) {
85 wr = themedCache.get(key)
    [all...]
Resources.java     [all...]

Completed in 99 milliseconds