Searched refs:projectKey (Results 1 - 6 of 6) sorted by relevance

/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/
H A DRemoteBridgeImpl.java111 String projectKey = mCachedProjectKeys.putIfAbsent(remoteParams.getProjectKey(),
117 remoteParams.getRenderingMode(), projectKey,
135 String projectKey = mCachedProjectKeys.putIfAbsent(remoteParams.getProjectKey(),
140 projectKey,
154 public void clearCaches(String projectKey) { argument
155 mCachedProjectKeys.remove(projectKey);
156 mBridge.clearCaches(projectKey);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java437 public void clearCaches(Object projectKey) { argument
438 if (projectKey != null) {
439 sProjectBitmapCache.remove(projectKey);
440 sProject9PatchCache.remove(projectKey);
590 * @param projectKey the key of the project, or null to query the framework cache.
593 public static Bitmap getCachedBitmap(String value, Object projectKey) { argument
594 if (projectKey != null) {
595 Map<String, SoftReference<Bitmap>> map = sProjectBitmapCache.get(projectKey);
616 * @param projectKey the key of the project, or null to put the bitmap in the framework cache.
618 public static void setCachedBitmap(String value, Bitmap bmp, Object projectKey) { argument
636 getCached9Patch(String value, Object projectKey) argument
662 setCached9Patch(String value, NinePatchChunk ninePatch, Object projectKey) argument
[all...]
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteRenderParamsAdapter.java51 Object projectKey = mDelegate.getProjectKey();
53 return projectKey != null ? projectKey.toString() : null;
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
H A DRemoteBridge.java110 * @param projectKey the key for the project.
112 void clearCaches(String projectKey) throws RemoteException; argument
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/
H A DRemoteBridgeClient.java126 public void clearCaches(Object projectKey) { argument
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java212 * @param projectKey An Object identifying the project. This is used for the cache mechanism.
219 public BridgeContext(Object projectKey, @NonNull DisplayMetrics metrics, argument
226 mProjectKey = projectKey;

Completed in 127 milliseconds