Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
DBridge.java371 public void clearCaches(Object projectKey) { in clearCaches() argument
372 if (projectKey != null) { in clearCaches()
373 sProjectBitmapCache.remove(projectKey); in clearCaches()
374 sProject9PatchCache.remove(projectKey); in clearCaches()
533 public static Bitmap getCachedBitmap(String value, Object projectKey) { in getCachedBitmap() argument
534 if (projectKey != null) { in getCachedBitmap()
535 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in getCachedBitmap()
558 public static void setCachedBitmap(String value, Bitmap bmp, Object projectKey) { in setCachedBitmap() argument
559 if (projectKey != null) { in setCachedBitmap()
560 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in setCachedBitmap()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java142 public BridgeContext(Object projectKey, DisplayMetrics metrics, in BridgeContext() argument
148 mProjectKey = projectKey; in BridgeContext()