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.java482 public void clearCaches(Object projectKey) { in clearCaches() argument
483 if (projectKey != null) { in clearCaches()
484 sProjectBitmapCache.remove(projectKey); in clearCaches()
485 sProject9PatchCache.remove(projectKey); in clearCaches()
648 public static Bitmap getCachedBitmap(String value, Object projectKey) { in getCachedBitmap() argument
649 if (projectKey != null) { in getCachedBitmap()
650 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in getCachedBitmap()
673 public static void setCachedBitmap(String value, Bitmap bmp, Object projectKey) { in setCachedBitmap() argument
674 if (projectKey != null) { in setCachedBitmap()
675 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in setCachedBitmap()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java187 public BridgeContext(Object projectKey, DisplayMetrics metrics, in BridgeContext() argument
194 mProjectKey = projectKey; in BridgeContext()