Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowBitmapFactoryTest.java112 ShadowBitmapFactory.provideWidthAndHeightHints(R.drawable.an_image, 123, 456); in decodeResource_shouldGetWidthAndHeightFromHints()
143 ShadowBitmapFactory.provideWidthAndHeightHints("/some/file.jpg", 123, 456); in decodeFile_shouldGetWidthAndHeightFromHints()
153 ShadowBitmapFactory.provideWidthAndHeightHints("/some/file.jpg", 123, 456); in decodeFileEtc_shouldSetOptionsOutWidthAndOutHeightFromHints()
163 ShadowBitmapFactory.provideWidthAndHeightHints(Uri.parse("content:/path"), 123, 456); in decodeUri_shouldGetWidthAndHeightFromHints()
180 ShadowBitmapFactory.provideWidthAndHeightHints(fd, 123, 456); in decodeFileDescriptor_shouldGetWidthAndHeightFromHints()
195 ShadowBitmapFactory.provideWidthAndHeightHints(Uri.parse(data), 123, 456); in decodeByteArray_shouldGetWidthAndHeightFromHints()
207 ShadowBitmapFactory.provideWidthAndHeightHints(Uri.parse(data), 123, 456); in decodeByteArray_shouldIncludeOffsets()
216 ShadowBitmapFactory.provideWidthAndHeightHints(Uri.parse("content:/path"), 123, 456); in decodeStream_shouldGetWidthAndHeightFromHints()
259 ShadowBitmapFactory.provideWidthAndHeightHints("image.png", 111, 222); in createShouldSetSizeToValueFromMapAsFirstPriority()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBitmapFactory.java201 public static void provideWidthAndHeightHints(Uri uri, int width, int height) { in provideWidthAndHeightHints() method in ShadowBitmapFactory
205 public static void provideWidthAndHeightHints(int resourceId, int width, int height) { in provideWidthAndHeightHints() method in ShadowBitmapFactory
209 public static void provideWidthAndHeightHints(String file, int width, int height) { in provideWidthAndHeightHints() method in ShadowBitmapFactory
214 public static void provideWidthAndHeightHints(FileDescriptor fd, int width, int height) { in provideWidthAndHeightHints() method in ShadowBitmapFactory
/external/volley/src/test/java/com/android/volley/toolbox/
DImageRequestTest.java51 ShadowBitmapFactory.provideWidthAndHeightHints("fake", 1024, 500); in parseNetworkResponse_resizing()