Home
last modified time | relevance | path

Searched refs:widthAndHeightMap (Results 1 – 1 of 1) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBitmapFactory.java36 private static Map<String, Point> widthAndHeightMap = new HashMap<>(); field in ShadowBitmapFactory
202 widthAndHeightMap.put(uri.toString(), new Point(width, height)); in provideWidthAndHeightHints()
206widthAndHeightMap.put("resource:" + RuntimeEnvironment.application.getResources().getResourceName(… in provideWidthAndHeightHints()
210 widthAndHeightMap.put("file:" + file, new Point(width, height)); in provideWidthAndHeightHints()
215 widthAndHeightMap.put("fd:" + fd, new Point(width, height)); in provideWidthAndHeightHints()
230 widthAndHeightMap.clear(); in reset()
234 final Point widthAndHeightFromMap = widthAndHeightMap.get(name); in selectWidthAndHeight()