Home
last modified time | relevance | path

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

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBitmapFactory.java73 protected static Bitmap decodeFile(String pathName) { in decodeFile() method in ShadowBitmapFactory
74 return decodeFile(pathName, null); in decodeFile()
78 protected static Bitmap decodeFile(String pathName, BitmapFactory.Options options) { in decodeFile() method in ShadowBitmapFactory
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowBitmapFactoryTest.java68 Bitmap bitmap = BitmapFactory.decodeFile("/some/file.jpg"); in decodeFile_shouldSetDescriptionAndCreatedFrom()
145 Bitmap bitmap = BitmapFactory.decodeFile("/some/file.jpg"); in decodeFile_shouldGetWidthAndHeightFromHints()
156 BitmapFactory.decodeFile("/some/file.jpg", options); in decodeFileEtc_shouldSetOptionsOutWidthAndOutHeightFromHints()
DShadowCanvasTest.java31 imageBitmap = BitmapFactory.decodeFile("/an/image.jpg"); in setUp()
DShadowViewTest.java284 Drawable drawable = new BitmapDrawable(BitmapFactory.decodeFile("some/fake/file")); in shouldRecordBackgroundDrawable()
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
DSkiaImageDecoder.java84 bitmap = BitmapFactory.decodeFile(uriString.substring(FILE_PREFIX.length()), options); in decode()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
DViewInflater.java612 Bitmap bm = BitmapFactory.decodeFile(uri.getPath()); in setImage()