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

  /frameworks/base/media/java/android/media/
CameraProfile.java 47 private static final HashMap<Integer, int[]> sCache = new HashMap<Integer, int[]>();
81 synchronized (sCache) {
82 int[] levels = sCache.get(cameraId);
85 sCache.put(cameraId, levels);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
TargetApplicationGetter.java 28 private static LruCache<String, ApplicationInfo> sCache =
33 return sCache.get(packageName);
36 sCache.remove(packageName);
59 sCache.put(packageName[0], targetAppInfo);
  /frameworks/base/core/java/android/os/
ServiceManager.java 31 private static HashMap<String, IBinder> sCache = new HashMap<String, IBinder>();
51 IBinder service = sCache.get(name);
101 IBinder service = sCache.get(name);
134 if (sCache.size() != 0) {
137 sCache.putAll(cache);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/
ArrayUtils.java 33 private static Object[] sCache = new Object[CACHE_SIZE];
108 Object cache = sCache[bucket];
112 sCache[bucket] = cache;
  /frameworks/native/opengl/libs/EGL/
egl_cache.h 122 // sCache is the singleton egl_cache_t object.
123 static egl_cache_t sCache;
egl_cache.cpp 78 egl_cache_t egl_cache_t::sCache;
81 return &sCache;
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 33 private static Object[] sCache = new Object[CACHE_SIZE];
107 Object cache = sCache[bucket];
111 sCache[bucket] = cache;
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 69 private static final SparseArray<WeakReference<ColorStateList>> sCache =
98 synchronized (sCache) {
99 WeakReference<ColorStateList> ref = sCache.get(color);
107 sCache.put(color, new WeakReference<ColorStateList>(csl));

Completed in 129 milliseconds