HomeSort by relevance Sort by last modified time
    Searched defs:sCache (Results 1 - 25 of 310) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 84 egl_cache_t egl_cache_t::sCache;
87 return &sCache;
  /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);
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
RenderScriptSingleton.java 36 private static AllocationCache sCache;
59 sCache = new AllocationCache(sRS);
70 sCache.close();
71 sCache = null;
101 if (sCache == null) {
105 return sCache;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
TintContextWrapper.java 41 private static ArrayList<WeakReference<TintContextWrapper>> sCache;
46 if (sCache == null) {
47 sCache = new ArrayList<>();
50 for (int i = sCache.size() - 1; i >= 0; i--) {
51 final WeakReference<TintContextWrapper> ref = sCache.get(i);
53 sCache.remove(i);
57 for (int i = sCache.size() - 1; i >= 0; i--) {
58 final WeakReference<TintContextWrapper> ref = sCache.get(i);
68 sCache.add(new WeakReference<>(wrapper));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
TargetPackageInfoGetterTask.java 30 private static final LruCache<String, PackageInfo> sCache = new LruCache<>(MAX_CACHE_ENTRIES);
34 return sCache.get(packageName);
38 sCache.remove(packageName);
56 sCache.put(packageName[0], packageInfo);
  /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);
136 if (sCache.size() != 0) {
139 sCache.putAll(cache);
  /cts/tests/tests/security/src/android/security/cts/
IsolatedService.java 33 private static final String SERVICE_MANAGER_INTERNAL_CACHE_NAME = "sCache";
42 HashMap<String, IBinder> sCache = (HashMap<String, IBinder>) cacheField.get(null);
43 for (Map.Entry<String, IBinder> serviceEntry : sCache.entrySet()) {
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
GenerationalClassUtil.java 48 private static List[] sCache = null;
50 if (sCache == null) {
54 return sCache[filter.ordinal()];
64 sCache = new List[ExtensionFilter.values().length];
66 sCache[filter.ordinal()] = new ArrayList();
102 sCache[filter.ordinal()].add(item);
135 sCache[filter.ordinal()].add(item);
  /packages/apps/Email/provider_src/com/android/email/mail/internet/
AuthenticationCache.java 20 private static AuthenticationCache sCache;
48 if (sCache == null) {
49 sCache = new AuthenticationCache();
51 return sCache;
  /frameworks/support/core-utils/java/android/support/v4/content/
FileProvider.java 342 // @GuardedBy("sCache")
343 private static HashMap<String, PathStrategy> sCache = new HashMap<String, PathStrategy>();
553 synchronized (sCache) {
554 strat = sCache.get(authority);
565 sCache.put(authority, strat);
    [all...]
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 132 private static final SparseArray<WeakReference<ColorStateList>> sCache = new SparseArray<>();
165 synchronized (sCache) {
166 final int index = sCache.indexOfKey(color);
168 final ColorStateList cached = sCache.valueAt(index).get();
174 sCache.removeAt(index);
178 final int N = sCache.size();
180 if (sCache.valueAt(i).get() == null) {
181 sCache.removeAt(i);
186 sCache.put(color, new WeakReference<>(csl));
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 41 private static Object[] sCache = new Object[CACHE_SIZE];
117 Object cache = sCache[bucket];
121 sCache[bucket] = cache;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
FontFamily_Delegate.java 73 private static final Map<String, FontInfo> sCache =
330 FontInfo fontInfo = sCache.get(path);
333 sCache.put(path, fontInfo);
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ContactInfoCache.java 77 private static ContactInfoCache sCache = null;
84 if (sCache == null) {
85 sCache = new ContactInfoCache(mContext.getApplicationContext());
87 return sCache;
  /prebuilts/devtools/tools/lib/
common.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.2.0/
common-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.4.0/
common-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.4.2/
common-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.5.0/
common-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.5.1/
common-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.5.3/
common-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.7.0/
common-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.7.1/
common-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.7.3/
common-22.7.3.jar 

Completed in 568 milliseconds

1 2 3 4 5 6 7 8 91011>>