Searched refs:projectKey (Results 1 – 2 of 2) sorted by relevance
435 public void clearCaches(Object projectKey) { in clearCaches() argument436 if (projectKey != null) { in clearCaches()437 sProjectBitmapCache.remove(projectKey); in clearCaches()438 sProject9PatchCache.remove(projectKey); in clearCaches()591 public static Bitmap getCachedBitmap(String value, Object projectKey) { in getCachedBitmap() argument592 if (projectKey != null) { in getCachedBitmap()593 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey); in getCachedBitmap()616 public static void setCachedBitmap(String value, Bitmap bmp, Object projectKey) { in setCachedBitmap() argument617 if (projectKey != null) { in setCachedBitmap()619 sProjectBitmapCache.computeIfAbsent(projectKey, k -> new HashMap<>()); in setCachedBitmap()[all …]
215 public BridgeContext(Object projectKey, @NonNull DisplayMetrics metrics, in BridgeContext() argument222 mProjectKey = projectKey; in BridgeContext()