/packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/ |
D | ProgramRestrictionsFragment.java | 38 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/ |
D | StorageEntry.java | 183 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()
|
D | StorageSelectionPreferenceController.java | 136 textView.setText(getItem(position).getDescription()); in getView() 152 textView.setText(getItem(position).getDescription()); in getDropDownView()
|
/packages/apps/Settings/src/com/android/settings/notification/app/ |
D | DescriptionPreferenceController.java | 48 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/ |
D | BrowserPlayerWrapperTest.java | 390 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/ |
D | LowLevelActions.java | 55 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() {
|
D | WaitForViewAction.java | 51 public String getDescription() { in getDescription() method in WaitForViewAction 76 .withActionDescription(this.getDescription()) in perform()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/audio_util/helpers/ |
D | Metadata.java | 106 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/ |
D | Player.java | 212 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/ |
D | RuntimeDocumentClipper.java | 113 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/ |
D | DetailsContent.java | 58 ? 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/ |
D | DescriptionPreferenceControllerTest.java | 120 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/ |
D | StorageEntryTest.java | 241 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()
|
D | StorageSelectionPreferenceControllerTest.java | 80 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/ |
D | DefaultErrorDialog.java | 33 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/ |
D | WaitForViewAction.java | 51 public String getDescription() { in getDescription() method in WaitForViewAction 76 .withActionDescription(this.getDescription()) in perform()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/ |
D | AllAppsState.java | 53 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/ |
D | SeriesScheduleRowAdapter.java | 112 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/ |
D | StorageWizardBase.java | 270 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/ |
D | TunerChannel.java | 95 (channel.getDescription() != null ? channel.getDescription() : description); in TunerChannel() 474 public String getDescription() { in getDescription() method in TunerChannel 475 return mProto.getDescription(); in getDescription()
|
D | PsipData.java | 228 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/ |
D | arguments_parser.h | 49 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/ |
D | DataManagerSearch.java | 132 || 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/ |
D | ChannelDataManager.java | 487 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/ |
D | SeriesRecording.java | 100 .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
|