Searched refs:art (Results 1 - 17 of 17) sorted by relevance

/frameworks/native/cmds/installd/
H A Ddexopt_return_codes.h73 inline const char* get_dex2oat_return_code_name(art::dex2oat::ReturnCode code) {
75 case art::dex2oat::ReturnCode::kNoFailure:
77 case art::dex2oat::ReturnCode::kOther:
79 case art::dex2oat::ReturnCode::kCreateRuntime:
86 // exit codes) as well as art::dex2oat::ReturnCode.
105 case static_cast<int>(art::dex2oat::ReturnCode::kNoFailure):
106 case static_cast<int>(art::dex2oat::ReturnCode::kOther):
107 case static_cast<int>(art::dex2oat::ReturnCode::kCreateRuntime):
114 value = get_dex2oat_return_code_name(static_cast<art::dex2oat::ReturnCode>(code));
H A Dotapreopt.cpp322 std::string art_path = isa_path + "/system@framework@boot.art";
356 std::string preopted_boot_art_path = StringPrintf("/system/framework/%s/boot.art", isa);
428 // This needs to be kept in sync with ART, see art/runtime/gc/space/image_space.cc.
433 cmd.push_back("--input-image-location=/system/framework/boot.art");
454 // This needs to be kept in sync with ART, see art/runtime/gc/space/image_space.cc.
607 static_cast<int>(art::dex2oat::ReturnCode::kCreateRuntime)) {
690 // Choose a random relocation offset. Taken from art/runtime/gc/image_space.cc.
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
H A DPipNotification.java208 Bitmap art = null;
216 art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ALBUM_ART);
217 if (art == null) {
218 art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ART);
222 if (!TextUtils.equals(title, mTitle) || art != mArt) {
224 mArt = art;
/frameworks/av/media/libstagefright/
H A DStagefrightMediaScanner.cpp164 MediaAlbumArt *art = static_cast<MediaAlbumArt *>(mem->pointer()); local
165 return art->clone();
/frameworks/base/cmds/app_process/
H A DAndroid.mk30 -Wl,--version-script,art/sigchainlib/version-script32.txt -Wl,--export-dynamic
32 -Wl,--version-script,art/sigchainlib/version-script64.txt -Wl,--export-dynamic
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/
H A DMediaNotificationManager.java258 Bitmap art = null;
262 // async fetch the album art icon
264 art = AlbumArtCache.getInstance().getBigImage(artUrl);
265 if (art == null) {
267 // use a placeholder art while the remote art is being downloaded
268 art = BitmapFactory.decodeResource(mService.getResources(),
281 .setLargeIcon(art);
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/
H A DMediaNotificationManager.java258 Bitmap art = null;
262 // async fetch the album art icon
264 art = AlbumArtCache.getInstance().getBigImage(artUrl);
265 if (art == null) {
267 // use a placeholder art while the remote art is being downloaded
268 art = BitmapFactory.decodeResource(mService.getResources(),
281 .setLargeIcon(art);
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DNotificationHelper.java183 Bitmap art;
187 art = null;
192 art = description.getIconBitmap();
215 .setLargeIcon(art)
H A DPlayerController.java94 public void setArt(Bitmap art) { argument
95 mArt = art;
98 mBinder.setIcon(art);
H A DOnePlayerActivity.java78 mArtView = findViewById(R.id.art);
122 Log.v(TAG, "Couldn't load album art", e);
/frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/app/
H A DMediaRouteControllerDialog.java378 // Start the session activity when a content item (album art, title or subtitle) is clicked.
477 // Fetch art icons again for layout changes to resize it accordingly
627 Bitmap art = ((BitmapDrawable) mArtView.getDrawable()).getBitmap();
628 if (art != null) {
629 artViewHeight = getDesiredArtHeight(art.getWidth(), art.getHeight());
630 mArtView.setScaleType(art.getWidth() >= art.getHeight()
1088 * Returns desired art height to fit into controller dialog.
1092 // For landscape art, fi
1454 onPostExecute(Bitmap art) argument
[all...]
/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/app/
H A DMediaRouteControllerDialog.java371 // Start the session activity when a content item (album art, title or subtitle) is clicked.
470 // Fetch art icons again for layout changes to resize it accordingly
620 Bitmap art = ((BitmapDrawable) mArtView.getDrawable()).getBitmap();
621 if (art != null) {
622 artViewHeight = getDesiredArtHeight(art.getWidth(), art.getHeight());
623 mArtView.setScaleType(art.getWidth() >= art.getHeight()
1082 * Returns desired art height to fit into controller dialog.
1086 // For landscape art, fi
1447 onPostExecute(Bitmap art) argument
[all...]
/frameworks/opt/net/wifi/service/
H A DAndroid.mk82 LOCAL_DEX_PREOPT_PROFILE_CLASS_LISTING := frameworks/base/services/art-profile
/frameworks/base/media/java/android/media/session/
H A DMediaSessionLegacyHelper.java86 Bitmap art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ART);
88 scaleBitmapIfTooBig(art, artworkWidth, artworkHeight));
90 // Fall back to album art if the track art wasn't available
91 Bitmap art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ALBUM_ART);
93 scaleBitmapIfTooBig(art, artworkWidth, artworkHeight));
/frameworks/native/cmds/installd/tests/
H A Dinstalld_dexopt_test.cpp289 std::string art = GetSecondaryDexArtifact(path, "art"); local
292 ASSERT_EQ(-1, access(art.c_str(), R_OK)); // empty profiles do not generate an image.
322 std::string art = GetSecondaryDexArtifact(path, "art"); local
325 ASSERT_EQ(-1, access(art.c_str(), R_OK)); // empty profiles do not generate an image.
433 std::string art = GetPrimaryDexArtifact(oat_dir, apk_path_, "art"); local
441 CheckFileAccess(art, kSystemUid, uid, mode);
648 // Validation errors will not clean the odex/vdex/art file
[all...]
/frameworks/support/media/src/main/java/android/support/v4/media/session/
H A DMediaSessionCompat.java2159 Bitmap art = metadata.getParcelable(MediaMetadataCompat.METADATA_KEY_ART);
2160 if (art != null) {
2162 art = art.copy(art.getConfig(), false);
2164 editor.putBitmap(RemoteControlClient.MetadataEditor.BITMAP_KEY_ARTWORK, art);
2166 // Fall back to album art if the track art wasn't available
2167 Bitmap art = metadata.getParcelable(MediaMetadataCompat.METADATA_KEY_ALBUM_ART);
2168 if (art !
[all...]
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
H A DPlaybackTransportRowPresenterTest.java204 final ColorDrawable art = new ColorDrawable();
210 mGlue.setArt(art);
215 assertSame(art, mViewHolder.mImageView.getDrawable());

Completed in 830 milliseconds