HomeSort by relevance Sort by last modified time
    Searched defs:provideWidthAndHeightHints (Results 1 - 2 of 2) sorted by null

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmapFactory.java 92 public static void provideWidthAndHeightHints(Uri uri, int width, int height) {
96 public static void provideWidthAndHeightHints(int resourceId, int width, int height) {
100 public static void provideWidthAndHeightHints(String file, int width, int height) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapFactoryTest.java 58 ShadowBitmapFactory.provideWidthAndHeightHints(R.drawable.an_image, 123, 456);
68 ShadowBitmapFactory.provideWidthAndHeightHints(R.drawable.an_image, 123, 456);
89 ShadowBitmapFactory.provideWidthAndHeightHints("/some/file.jpg", 123, 456);
99 ShadowBitmapFactory.provideWidthAndHeightHints("/some/file.jpg", 123, 456);
109 ShadowBitmapFactory.provideWidthAndHeightHints(Uri.parse("content:/path"), 123, 456);
119 ShadowBitmapFactory.provideWidthAndHeightHints(Uri.parse("content:/path"), 123, 456);

Completed in 233 milliseconds