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.java476 public void clearCaches(Object projectKey) { in clearCaches() argument
477 if (projectKey != null) { in clearCaches()
478 sProjectBitmapCache.remove(projectKey); in clearCaches()
479 sProject9PatchCache.remove(projectKey); in clearCaches()
642 public static Bitmap getCachedBitmap(String value, Object projectKey) { in getCachedBitmap() argument
643 if (projectKey != null) { in getCachedBitmap()
644 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in getCachedBitmap()
667 public static void setCachedBitmap(String value, Bitmap bmp, Object projectKey) { in setCachedBitmap() argument
668 if (projectKey != null) { in setCachedBitmap()
669 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in setCachedBitmap()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java185 public BridgeContext(Object projectKey, DisplayMetrics metrics, in BridgeContext() argument
192 mProjectKey = projectKey; in BridgeContext()