Searched refs:projectKey (Results 1 – 2 of 2) sorted by relevance
371 public void clearCaches(Object projectKey) { in clearCaches() argument372 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() argument534 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() argument559 if (projectKey != null) { in setCachedBitmap()560 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in setCachedBitmap()[all …]
142 public BridgeContext(Object projectKey, DisplayMetrics metrics, in BridgeContext() argument148 mProjectKey = projectKey; in BridgeContext()