Home
last modified time | relevance | path

Searched refs:getDescription (Results 1 – 25 of 155) sorted by relevance

1234567

/packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/
DProgramRestrictionsFragment.java38 public static String getDescription(MainActivity tvActivity) { in getDescription() method in ProgramRestrictionsFragment
39 return RatingsFragment.getDescription(tvActivity); in getDescription()
59 RatingSystemsFragment.getDescription(getMainActivity()), in getItemList()
68 String ratingsDescription = RatingsFragment.getDescription(getMainActivity()); in getItemList()
82 if (RatingSystemsFragment.getDescription(getMainActivity()) in getItemList()
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
DStorageEntry.java183 if (getDescription() == null) { in compareTo()
186 if (other.getDescription() == null) { in compareTo()
189 return getDescription().compareTo(other.getDescription()); in compareTo()
249 public String getDescription() { in getDescription() method in StorageEntry
254 return mUnsupportedDiskInfo.getDescription(); in getDescription()
DStorageSelectionPreferenceController.java136 textView.setText(getItem(position).getDescription()); in getView()
152 textView.setText(getItem(position).getDescription()); in getDropDownView()
/packages/apps/Settings/src/com/android/settings/notification/app/
DDescriptionPreferenceController.java48 if (mChannel != null && !TextUtils.isEmpty(mChannel.getDescription())) { in isAvailable()
51 if (hasValidGroup() && !TextUtils.isEmpty(mChannelGroup.getDescription())) { in isAvailable()
65 preference.setTitle(mChannel.getDescription()); in updateState()
67 preference.setTitle(mChannelGroup.getDescription()); in updateState()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/audio_util/
DBrowserPlayerWrapperTest.java390 Assert.assertEquals(expected.getDescription().getMediaId(), folder.mediaId); in testGetFolderItems()
391 Assert.assertEquals(expected.getDescription().getTitle(), folder.title); in testGetFolderItems()
395 Assert.assertEquals(expected.getDescription().getMediaId(), song.mediaId); in testGetFolderItems()
396 Assert.assertEquals(expected.getDescription().getTitle(), song.title); in testGetFolderItems()
397 Assert.assertEquals(expected.getDescription().getSubtitle(), song.artist); in testGetFolderItems()
398 Assert.assertEquals(expected.getDescription().getDescription(), song.album); in testGetFolderItems()
399 if (expected.getDescription().getIconBitmap() != null) { in testGetFolderItems()
401 Bitmap expectedBitmap = expected.getDescription().getIconBitmap(); in testGetFolderItems()
403 } else if (expected.getDescription().getIconUri() != null) { in testGetFolderItems()
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/androidTest/java/com/android/car/ui/actions/
DLowLevelActions.java55 public String getDescription() { in getDescription() method in LowLevelActions.PressAndHoldAction
78 public String getDescription() { in getDescription() method in LowLevelActions.ReleaseAction
102 public String getDescription() { in touchDownAndUp() method in LowLevelActions
140 public String getDescription() {
DWaitForViewAction.java51 public String getDescription() { in getDescription() method in WaitForViewAction
76 .withActionDescription(this.getDescription()) in perform()
/packages/apps/Bluetooth/src/com/android/bluetooth/audio_util/helpers/
DMetadata.java106 fromMediaDescription(data.getDescription()); in fromMediaMetadata()
150 return fromMediaDescription(item.getDescription()).setMediaId(item.getMediaId()); in fromMediaItem()
162 if (desc.getDescription() != null) mMetadata.album = desc.getDescription().toString(); in fromMediaDescription()
181 return fromMediaDescription(item.getDescription()); in fromQueueItem()
/packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
DPlayer.java212 MediaDescription description = item.getDescription(); in saveState()
340 if (item.getDescription().getMediaId().equals(key)) { in startPlayback()
355 String path = current.getDescription().getExtras().getString(DataModel.PATH_KEY); in startPlayback()
356 MediaMetadata metadata = mDataModel.getMetadata(current.getDescription().getMediaId()); in startPlayback()
384 MediaDescription current = mQueue.get(mCurrentQueueIdx).getDescription(); in postMediaNotification()
493 MediaDescription next = mQueue.get(mCurrentQueueIdx).getDescription(); in playCurrentQueueIndex()
560 mQueue.set(i, new QueueItem(mQueue.get(i).getDescription(), i)); in shuffle()
/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
DRuntimeDocumentClipper.java113 clipData.getDescription().getExtras().putString( in getClipDataForDocuments()
212 PersistableBundle bundle = data.getDescription().getExtras(); in clipDocumentsForCut()
254 clipData.getDescription().getExtras().putInt(OP_TYPE_KEY, opType); in copyFromClipData()
269 PersistableBundle bundle = clipData.getDescription().getExtras(); in copyFromClipData()
316 PersistableBundle bundle = data.getDescription().getExtras(); in getOpType()
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DDetailsContent.java58 ? recordedProgram.getDescription() in createFromRecordedProgram()
75 ? program.getDescription() in createFromProgram()
89 ? seriesRecording.getDescription() in createFromSeriesRecording()
112 description = channel != null ? channel.getDescription() : null; in createFromScheduledRecording()
175 public String getDescription() { in getDescription() method in DetailsContent
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/
DDescriptionPreferenceControllerTest.java120 when(channel.getDescription()).thenReturn("AAA"); in testIsAvailable_channel()
129 when(group.getDescription()).thenReturn("something"); in testIsAvailable_channelGroup()
145 when(channel.getDescription()).thenReturn("AAA"); in testUpdateState_channel()
160 when(group.getDescription()).thenReturn("something"); in testUpdateState_channelGroup()
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageEntryTest.java241 when(diskInfo.getDescription()).thenReturn(description); in getDescription_shouldReturnDescription()
246 assertThat(volumeStorage.getDescription()).isEqualTo(description); in getDescription_shouldReturnDescription()
247 assertThat(diskStorage.getDescription()).isEqualTo(description); in getDescription_shouldReturnDescription()
248 assertThat(recordStorage.getDescription()).isEqualTo(description); in getDescription_shouldReturnDescription()
258 assertThat(volumeStorage.getDescription()).isEqualTo( in getDescription_defaultInternalStorage_returnThisDevice()
DStorageSelectionPreferenceControllerTest.java80 assertThat(storageEntries.get(i).getDescription()) in setStorageEntries_fromStorageManager_correctAdapterItems()
81 .isEqualTo(mController.mStorageAdapter.getItem(i).getDescription()); in setStorageEntries_fromStorageManager_correctAdapterItems()
/packages/apps/Dialer/java/com/android/incallui/disconnectdialog/
DDefaultErrorDialog.java33 return !TextUtils.isEmpty(disconnectCause.getDescription()) in shouldShow()
41 CharSequence message = disconnectCause.getDescription(); in createDialog()
/packages/apps/Car/libs/car-ui-lib/car-rotary-lib/src/androidTest/java/com/android/car/ui/actions/
DWaitForViewAction.java51 public String getDescription() { in getDescription() method in WaitForViewAction
76 .withActionDescription(this.getDescription()) in perform()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/
DAllAppsState.java53 public String getDescription(Launcher launcher) { in getDescription() method in AllAppsState
55 return appsView.getDescription(); in getDescription()
/packages/apps/TV/src/com/android/tv/dvr/ui/list/
DSeriesScheduleRowAdapter.java112 mHeaderRow.setDescription(getDescription()); in setPrograms()
120 private String getDescription() { in getDescription() method in SeriesScheduleRowAdapter
245 mHeaderRow.setDescription(getDescription()); in notifyArrayItemRangeChanged()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageWizardBase.java270 return mDisk.getDescription(); in getDiskDescription()
272 return mVolume.getDescription(); in getDiskDescription()
282 return mVolume.getDescription(); in getDiskShortDescription()
/packages/apps/TV/tuner/src/com/android/tv/tuner/data/
DTunerChannel.java95 (channel.getDescription() != null ? channel.getDescription() : description); in TunerChannel()
474 public String getDescription() { in getDescription() method in TunerChannel
475 return mProto.getDescription(); in getDescription()
DPsipData.java228 public String getDescription() { in getDescription() method in PsipData.VctItem
645 public String getDescription() { in getDescription() method in PsipData.RatingRegion
730 public String getDescription() { in getDescription() method in PsipData.EitItem
826 return StringUtils.compare(mDescription, item.getDescription()); in compareTo()
/packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
Darguments_parser.h49 const std::string &getDescription() const { return mDescription; } in getDescription() function
83 const std::string &getDescription() const { return mDescription; } in getDescription() function
/packages/apps/TV/src/com/android/tv/search/
DDataManagerSearch.java132 || contains(channel.getDescription(), query)) { in searchFromDataManagers()
196 if (contains(program.getDescription(), query) in searchFromDataManagers()
249 result.setDescription(channel.getDescription()); in addResult()
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/datamanager/
DChannelDataManager.java487 if (oldItem.getDescription() != null in handleEvents()
488 && item.getDescription() == null in handleEvents()
495 item.setDescription(oldItem.getDescription()); in handleEvents()
574 .withValue(TvContract.Programs.COLUMN_SHORT_DESCRIPTION, item.getDescription()) in buildContentProviderOperation()
597 values.put(TvContract.Channels.COLUMN_DESCRIPTION, channel.getDescription()); in handleChannel()
/packages/apps/TV/src/com/android/tv/dvr/data/
DSeriesRecording.java100 .setDescription(p.getDescription()) in builder()
115 .setDescription(r.getDescription()) in buildFrom()
186 values.put(SeriesRecordings.COLUMN_SHORT_DESCRIPTION, r.getDescription()); in toContentValues()
465 public String getDescription() { in getDescription() method in SeriesRecording

1234567