/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
D | TintContextWrapper.java | 42 private static ArrayList<WeakReference<TintContextWrapper>> sCache; field in TintContextWrapper 47 if (sCache == null) { in wrap() 48 sCache = new ArrayList<>(); in wrap() 51 for (int i = sCache.size() - 1; i >= 0; i--) { in wrap() 52 final WeakReference<TintContextWrapper> ref = sCache.get(i); in wrap() 54 sCache.remove(i); in wrap() 58 for (int i = sCache.size() - 1; i >= 0; i--) { in wrap() 59 final WeakReference<TintContextWrapper> ref = sCache.get(i); in wrap() 69 sCache.add(new WeakReference<>(wrapper)); in wrap()
|
/frameworks/base/core/java/android/os/ |
D | ServiceManager.java | 31 private static HashMap<String, IBinder> sCache = new HashMap<String, IBinder>(); field in ServiceManager 52 IBinder service = sCache.get(name); in getService() 117 IBinder service = sCache.get(name); in checkService() 152 if (sCache.size() != 0) { in initServiceCache() 155 sCache.putAll(cache); in initServiceCache()
|
/frameworks/base/media/java/android/media/ |
D | CameraProfile.java | 47 private static final HashMap<Integer, int[]> sCache = new HashMap<Integer, int[]>(); field in CameraProfile 81 synchronized (sCache) { in getJpegEncodingQualityParameter() 82 int[] levels = sCache.get(cameraId); in getJpegEncodingQualityParameter() 85 sCache.put(cameraId, levels); in getJpegEncodingQualityParameter()
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/ |
D | GenerationalClassUtil.java | 48 private static List[] sCache = null; field in GenerationalClassUtil 50 if (sCache == null) { in loadObjects() 54 return sCache[filter.ordinal()]; in loadObjects() 64 sCache = new List[ExtensionFilter.values().length]; in buildCache() 66 sCache[filter.ordinal()] = new ArrayList(); in buildCache() 102 sCache[filter.ordinal()].add(item); in loadFromDirectory() 135 sCache[filter.ordinal()].add(item); in loadFomZipFile()
|
/frameworks/base/core/java/android/content/res/ |
D | ColorStateList.java | 132 private static final SparseArray<WeakReference<ColorStateList>> sCache = new SparseArray<>(); field in ColorStateList 165 synchronized (sCache) { in valueOf() 166 final int index = sCache.indexOfKey(color); in valueOf() 168 final ColorStateList cached = sCache.valueAt(index).get(); in valueOf() 174 sCache.removeAt(index); in valueOf() 178 final int N = sCache.size(); in valueOf() 180 if (sCache.valueAt(i).get() == null) { in valueOf() 181 sCache.removeAt(i); in valueOf() 186 sCache.put(color, new WeakReference<>(csl)); in valueOf()
|
/frameworks/support/core-utils/java/android/support/v4/content/ |
D | FileProvider.java | 344 private static HashMap<String, PathStrategy> sCache = new HashMap<String, PathStrategy>(); field in FileProvider 554 synchronized (sCache) { in getPathStrategy() 555 strat = sCache.get(authority); in getPathStrategy() 566 sCache.put(authority, strat); in getPathStrategy()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_cache.h | 125 static egl_cache_t sCache; variable
|
D | egl_cache.cpp | 80 egl_cache_t egl_cache_t::sCache; member in android::egl_cache_t 83 return &sCache; in get()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | FontFamily_Delegate.java | 76 private static final Map<String, FontInfo> sCache = field in FontFamily_Delegate 350 FontInfo fontInfo = sCache.get(path); 353 sCache.put(path, fontInfo);
|
/frameworks/base/core/java/com/android/internal/util/ |
D | ArrayUtils.java | 41 private static Object[] sCache = new Object[CACHE_SIZE]; field in ArrayUtils 117 Object cache = sCache[bucket]; in emptyArray() 121 sCache[bucket] = cache; in emptyArray()
|