/frameworks/base/core/java/android/content/pm/ |
D | ResolveInfo.java | 140 public int labelRes; field in ResolveInfo 243 if (resolvePackageName != null && labelRes != 0) { in loadLabel() 244 label = pm.getText(resolvePackageName, labelRes, null); in loadLabel() 251 if (labelRes != 0) { in loadLabel() 252 label = pm.getText(ci.packageName, labelRes, ai); in loadLabel() 271 if (labelRes != 0) { in resolveLabelResId() 272 return labelRes; in resolveLabelResId() 275 if (componentInfo.labelRes != 0) { in resolveLabelResId() 276 return componentInfo.labelRes; in resolveLabelResId() 278 return componentInfo.applicationInfo.labelRes; in resolveLabelResId() [all …]
|
D | PackageItemInfo.java | 136 public int labelRes; field in PackageItemInfo 196 labelRes = orig.labelRes; in PackageItemInfo() 236 if (labelRes != 0) { in loadUnsafeLabel() 237 CharSequence label = pm.getText(packageName, labelRes, getApplicationInfo()); in loadUnsafeLabel() 448 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0 || banner != 0) { in dumpFront() 449 pw.println(prefix + "labelRes=0x" + Integer.toHexString(labelRes) in dumpFront() 463 dest.writeInt(labelRes); in writeToParcel() 482 proto.write(PackageItemInfoProto.LABEL_RES, labelRes); in dumpDebug() 495 labelRes = source.readInt(); in PackageItemInfo()
|
D | LabeledIntent.java | 44 int labelRes, int icon) { in LabeledIntent() argument 47 mLabelRes = labelRes; in LabeledIntent() 78 public LabeledIntent(String sourcePackage, int labelRes, int icon) { in LabeledIntent() argument 80 mLabelRes = labelRes; in LabeledIntent()
|
D | ComponentInfo.java | 130 if (labelRes != 0) { in loadUnsafeLabel() 131 label = pm.getText(packageName, labelRes, ai); in loadUnsafeLabel() 139 if (ai.labelRes != 0) { in loadUnsafeLabel() 140 label = pm.getText(packageName, ai.labelRes, ai); in loadUnsafeLabel()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/viewmodel/ |
D | QSTileConfig.kt | 41 val labelRes: Int constant 51 override val labelRes: Int constant 58 @StringRes override val labelRes: Int, constant in com.android.systemui.qs.tiles.viewmodel.QSTileUIConfig.Resource
|
D | QSTileState.kt | 62 resources.getString(config.labelRes), in build()
|
/frameworks/base/core/java/com/android/internal/pm/pkg/component/ |
D | ParsedComponentImpl.java | 58 private int labelRes; field in ParsedComponentImpl 93 this.labelRes = other.getLabelRes(); in ParsedComponentImpl() 180 this.labelRes = in.readInt(); in ParsedComponentImpl() 220 return labelRes; in getLabelRes() 266 labelRes = value; in setLabelRes()
|
D | ParsedIntentInfoImpl.java | 141 int labelRes = in.readInt(); in ParsedIntentInfoImpl() local 147 this.mLabelRes = labelRes; in ParsedIntentInfoImpl()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/ |
D | ConnectivityModule.kt | 148 labelRes = R.string.airplane_mode, in bindBluetoothTile() 180 labelRes = R.string.data_saver, in bindBluetoothTile() 211 labelRes = R.string.quick_settings_internet_label, in bindBluetoothTile() 242 labelRes = R.string.quick_settings_hotspot_label, in bindBluetoothTile() 256 labelRes = R.string.quick_settings_cast_title, in bindBluetoothTile() 270 labelRes = R.string.quick_settings_bluetooth_label, in bindBluetoothTile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | PolicyModule.kt | 139 labelRes = R.string.quick_settings_flashlight_label, in bindDndTile() 171 labelRes = R.string.quick_settings_location_label, in bindDndTile() 207 labelRes = R.string.status_bar_alarm, in bindDndTile() 239 labelRes = R.string.quick_settings_ui_mode_night_label, in bindDndTile() 271 labelRes = R.string.quick_settings_work_mode_label, in bindDndTile() 303 labelRes = R.string.quick_settings_camera_label, in bindDndTile() 345 labelRes = R.string.quick_settings_mic_label, in bindDndTile() 388 labelRes = R.string.quick_settings_dnd_label, in bindDndTile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/panels/domain/interactor/ |
D | EditTilesListInteractor.kt | 52 ContentDescription.Resource(config.uiConfig.labelRes) in getTilesToEdit() 54 Text.Resource(config.uiConfig.labelRes), in getTilesToEdit()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/app/ |
D | ResolverDataProvider.java | 138 appInfo.labelRes = 1; in createPackageManagerMockedInfo() 146 activityInfo.labelRes = 2; in createPackageManagerMockedInfo() 157 resolveInfo.labelRes = 3; in createPackageManagerMockedInfo()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/qs/ |
D | QSAccessibilityModule.kt | 178 labelRes = R.string.quick_settings_color_correction_label, in bindColorInversionTile() 209 labelRes = R.string.quick_settings_inversion_label, in bindColorInversionTile() 240 labelRes = R.string.quick_settings_font_scaling_label, in bindColorInversionTile() 271 labelRes = com.android.internal.R.string.reduce_bright_colors_feature_name, in bindColorInversionTile() 307 labelRes = R.string.quick_settings_onehanded_label, in bindColorInversionTile() 340 labelRes = R.string.quick_settings_night_display_label, in bindColorInversionTile()
|
/frameworks/base/core/java/android/provider/ |
D | ContactsContract.java | 6429 final int labelRes = getTypeLabelResource(type); in getTypeLabel() local 6430 return res.getText(labelRes); in getTypeLabel() 6641 final int labelRes = getTypeLabelResource(type); in getTypeLabel() local 6642 return res.getText(labelRes); in getTypeLabel() 6849 final int labelRes = getTypeLabelResource(type); in getTypeLabel() local 6850 return res.getText(labelRes); in getTypeLabel() 7014 final int labelRes = getTypeLabelResource(type); in getTypeLabel() local 7015 return res.getText(labelRes); in getTypeLabel() 7048 final int labelRes = getProtocolLabelResource(type); in getProtocolLabel() local 7049 return res.getText(labelRes); in getProtocolLabel() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recordissue/ |
D | RecordIssueModule.kt | 53 labelRes = R.string.qs_record_issue_label in bindRecordIssueTile()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/panels/domain/interactor/ |
D | EditTilesListInteractorTest.kt | 192 Icon.Resource(uiConfig.iconRes, ContentDescription.Resource(uiConfig.labelRes)), in toEditTileData() 193 label = Text.Resource(uiConfig.labelRes), in toEditTileData()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/ |
D | SystemUIToast.java | 201 } else if (appInfo.labelRes != 0) { in inflateToastView() 206 iconView.setContentDescription(res.getString(appInfo.labelRes)); in inflateToastView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/rotationlock/ |
D | RotationLockNewModule.kt | 60 labelRes = R.string.quick_settings_rotation_unlocked_label, in provideRotationAvailabilityInteractor()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/ |
D | BatterySaverModule.kt | 51 labelRes = R.string.battery_detail_switch_title, in bindBatterySaverTile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qrcodescanner/dagger/ |
D | QRCodeScannerModule.kt | 69 labelRes = R.string.qr_code_scanner_title, in bindQRCodeScannerTile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
D | ScreenRecordModule.kt | 71 labelRes = R.string.quick_settings_screen_record_label, in bindScreenRecordRepository()
|
/frameworks/base/media/java/android/media/tv/ |
D | TvInputInfo.java | 204 HdmiDeviceInfo hdmiDeviceInfo, String parentId, int labelRes, Icon icon) in createTvInputInfo() argument 209 .setLabel(labelRes) in createTvInputInfo() 257 TvInputHardwareInfo hardwareInfo, int labelRes, Icon icon) in createTvInputInfo() argument 261 .setLabel(labelRes) in createTvInputInfo()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/dagger/ |
D | ControlsModule.kt | 94 labelRes = com.android.systemui.res.R.string.quick_controls_title
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/panels/ui/viewmodel/ |
D | EditModeViewModelTest.kt | 514 Icon.Resource(uiConfig.iconRes, ContentDescription.Resource(uiConfig.labelRes)), in <lambda>() 515 label = Text.Resource(uiConfig.labelRes), in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ResolveIntentHelper.java | 212 ri.activityInfo.labelRes = ResolverActivity.getLabelRes(intent.getAction()); in chooseBestActivity() 231 ri.labelRes = appi.labelRes; in chooseBestActivity()
|