Searched refs:projectKey (Results 1 – 2 of 2) sorted by relevance
482 public void clearCaches(Object projectKey) { in clearCaches() argument483 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() argument649 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() argument674 if (projectKey != null) { in setCachedBitmap()675 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in setCachedBitmap()[all …]
187 public BridgeContext(Object projectKey, DisplayMetrics metrics, in BridgeContext() argument194 mProjectKey = projectKey; in BridgeContext()