Home
last modified time | relevance | path

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

12345678910>>...13

/aosp_15_r20/external/coreboot/util/hda-decoder/
H A Dmain.go61 func decodeFile(path string, codec uint32) { func
114 decodeFile(path+"/init_pin_configs", codec)
158 decodeFile(*file, uint32(*codec))
/aosp_15_r20/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowBitmapFactoryTest.java108 Bitmap bitmap = BitmapFactory.decodeFile("/some/file.jpg"); in decodeFile_shouldSetDescriptionAndCreatedFrom()
214 Bitmap bitmap = BitmapFactory.decodeFile("/some/file.jpg"); in decodeFile_shouldGetWidthAndHeightFromHints()
225 BitmapFactory.decodeFile("/some/file.jpg", options); in decodeFileEtc_shouldSetOptionsOutWidthAndOutHeightFromHints()
392 Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath()); in decodeFile_shouldGetCorrectColorFromPngImage()
408 Bitmap loadedBitmap = BitmapFactory.decodeFile(tmpFile.getAbsolutePath()); in decodeFile_shouldHaveCorrectWidthAndHeight()
499 Bitmap newBitmap = BitmapFactory.decodeFile(tempFile.toAbsolutePath().toString()); in decodeFile_shouldGetCorrectColorFromCompressedFile()
/aosp_15_r20/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/androidTest/java/com/android/media/benchmark/tests/
H A DEncoderTest.java157 int status = decodeFile(mInputFilePath + DECODE_FULLHD_INPUT, mDecodedFileFullHd); in prepareInput()
161 status = decodeFile(mInputFilePath + DECODE_QCIF_INPUT, mDecodedFileQcif); in prepareInput()
165 status = decodeFile(mInputFilePath + DECODE_AUDIO_INPUT, mDecodedFileAudio); in prepareInput()
169 private static int decodeFile(String inputFileName, File outputDecodeFile) in decodeFile() method in EncoderTest
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java526 public static Bitmap decodeFile(String pathName, Options opts) { in decodeFile() method in BitmapFactory
557 public static Bitmap decodeFile(String pathName) { in decodeFile() method in BitmapFactory
558 return decodeFile(pathName, null); in decodeFile()
H A DMovie.java79 public static Movie decodeFile(String pathName) { in decodeFile() method in Movie
/aosp_15_r20/packages/apps/Camera2/src/com/android/camera/data/
DPhotoDataFactory.java97 BitmapFactory.decodeFile(filePath, opts); in decodeBitmapDimensions()
105 Bitmap b = BitmapFactory.decodeFile(filePath); in decodeBitmapDimensions()
/aosp_15_r20/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
H A DImageResizer.java154 BitmapFactory.decodeFile(filename, options); in decodeSampledBitmapFromFile()
166 return BitmapFactory.decodeFile(filename, options); in decodeSampledBitmapFromFile()
/aosp_15_r20/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
H A DImageResizer.java154 BitmapFactory.decodeFile(filename, options); in decodeSampledBitmapFromFile()
166 return BitmapFactory.decodeFile(filename, options); in decodeSampledBitmapFromFile()
/aosp_15_r20/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DImageResizer.java154 BitmapFactory.decodeFile(filename, options); in decodeSampledBitmapFromFile()
166 return BitmapFactory.decodeFile(filename, options); in decodeSampledBitmapFromFile()
/aosp_15_r20/cts/tests/tests/graphics/src/android/graphics/cts/
H A DMovieTest.java85 mMovie = Movie.decodeFile(imagefile.getPath()); in testDecodeFile()
88 mMovie = Movie.decodeFile("/no file path"); in testDecodeFile()
H A DBitmapFactoryTest.java404 Bitmap b = BitmapFactory.decodeFile(obtainPath(), mOpt1); in testDecodeFile1()
410 assertNull(BitmapFactory.decodeFile(obtainPath(), mOpt2)); in testDecodeFile1()
415 Bitmap b = BitmapFactory.decodeFile(obtainPath()); in testDecodeFile2()
780 BitmapFactory.decodeFile("barely/care.jpg", options); in testMutableHardwareInDecodeFile()
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowBitmapFactory.java93 protected static Bitmap decodeFile(String pathName) { in decodeFile() method in ShadowBitmapFactory
94 return decodeFile(pathName, null); in decodeFile()
99 protected static Bitmap decodeFile(String pathName, BitmapFactory.Options options) { in decodeFile() method in ShadowBitmapFactory
/aosp_15_r20/prebuilts/go/linux-x86/src/image/jpeg/
Dreader_test.go39 m0, err := decodeFile(tc + ".jpeg")
44 m1, err := decodeFile(tc + ".progressive.jpeg")
87 func decodeFile(filename string) (image.Image, error) { func
/aosp_15_r20/platform_testing/libraries/screenshot/src/androidTest/java/platform/test/screenshot/report/
H A DScubaExportStrategyTest.kt230 return BitmapFactory.decodeFile(path).getColor(0, 0) in reportResult_writesCorrectImageContents()
264 return BitmapFactory.decodeFile(path).getColor(0, 0) in reportResult_duplicateCall_doesNotOverwriteFile()
/aosp_15_r20/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/graphics/
H A DImageLoaderTest.kt156 val bitmap = BitmapFactory.decodeFile(imgFile.absolutePath) in validBitmapFile_returnsBitmapDrawable()
164 val bitmap = BitmapFactory.decodeFile(imgFile.absolutePath) in validInputStream_returnsBitmapDrawable()
/aosp_15_r20/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java102 Bitmap b = BitmapFactory.decodeFile(pathName); in newInstance()
241 return BitmapFactory.decodeFile(mPath, options); in loadPreviewBitmap()
/aosp_15_r20/packages/apps/Camera2/src/com/android/camera/session/
DStackSaverImpl.java71 Bitmap bitmap = BitmapFactory.decodeFile(filePath); in saveStackedImage()
/aosp_15_r20/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/
DRotationWallpaperUpdateReceiver.java88 Bitmap bitmap = BitmapFactory.decodeFile(wallpaperFile.getAbsolutePath()); in switchToStaticWallpaper()
/aosp_15_r20/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java500 BitmapFactory.decodeFile(expectedImageFile.getAbsolutePath(), expectedOptions)); in assertBitmapsEquivalent()
503 BitmapFactory.decodeFile(actualImageFile.getAbsolutePath(), actualOptions)); in assertBitmapsEquivalent()
/aosp_15_r20/frameworks/libs/systemui/weathereffects/src/com/google/android/wallpaper/weathereffects/data/repository/
DWallpaperFileUtils.kt85 val bitmap = BitmapFactory.decodeFile(absolutePath) in importBitmapFromAbsolutePath()
/aosp_15_r20/packages/apps/Multiuser/Widget/src/main/java/com/android/multiuser/widget/ui/util/
DMultiuserWidgetLayoutHelper.kt46 return BitmapFactory.decodeFile(file.absolutePath, options) in readFromInternalStorage()
/aosp_15_r20/packages/apps/Car/Settings/src/com/android/car/settings/system/
DRegulatoryInfoDisplayActivity.java81 Bitmap regulatoryInfoBitmap = BitmapFactory.decodeFile(regulatoryInfoFile); in onCreate()
/aosp_15_r20/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
H A DSkiaImageDecoder.java87 bitmap = BitmapFactory.decodeFile(uriString.substring(FILE_PREFIX.length()), options); in decode()
/aosp_15_r20/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DDetailsHelper.java85 Bitmap bitmap = BitmapFactory.decodeFile(path); in resolveResolution()
/aosp_15_r20/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/
DLegacyPartnerWallpaperInfo.java134 Bitmap thumbBitmap = BitmapFactory.decodeFile(thumbnail.getAbsolutePath()); in getThumbnail()

12345678910>>...13