Home
last modified time | relevance | path

Searched refs:labelRes (Results 1 – 21 of 21) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/model/account/
DAccountType.java324 public int labelRes; field in AccountType.EditType
335 public EditType(int rawValue, int labelRes) { in EditType() argument
337 this.labelRes = labelRes; in EditType()
376 + labelRes in toString()
390 public EventEditType(int rawValue, int labelRes) { in EventEditType() argument
391 super(rawValue, labelRes); in EventEditType()
DBaseAccountType.java657 final int labelRes = getTypeLabelResource(type); in getTypeLabel() local
659 return res.getText(labelRes); in getTypeLabel()
661 return res.getString(labelRes, label == null ? "" : label); in getTypeLabel()
663 return res.getText(labelRes); in getTypeLabel()
/packages/apps/Contacts/src/com/android/contacts/model/account/
DAccountType.java357 public int labelRes; field in AccountType.EditType
366 public EditType(int rawValue, int labelRes) { in EditType() argument
368 this.labelRes = labelRes; in EditType()
405 + " labelRes=" + labelRes in toString()
415 public EventEditType(int rawValue, int labelRes) { in EventEditType() argument
416 super(rawValue, labelRes); in EventEditType()
DBaseAccountType.java518 final int labelRes = getTypeLabelResource(type); in getTypeLabel() local
520 return res.getText(labelRes); in getTypeLabel()
522 return res.getString(labelRes, label == null ? "" : label); in getTypeLabel()
524 return res.getText(labelRes); in getTypeLabel()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DOptionsPopupView.java280 public final int labelRes; field in OptionsPopupView.OptionItem
287 public OptionItem(Context context, int labelRes, int iconRes, EventEnum eventId, in OptionItem() argument
289 this.labelRes = labelRes; in OptionItem()
290 this.label = context.getText(labelRes); in OptionItem()
298 this.labelRes = 0; in OptionItem()
DAccessibilityActionsView.java70 info.addAction(new AccessibilityAction(item.labelRes, item.label)); in createAccessibilityNodeInfo()
86 if (item.labelRes == action) { in performAccessibilityAction()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/model/livedatatypes/
DLightPermGroupInfo.kt38 val labelRes: Int, constant in com.android.permissioncontroller.permission.model.livedatatypes.LightPermGroupInfo
44 constructor(pII: PackageItemInfo): this(pII.name, pII.packageName, pII.labelRes, pII.icon,
47 constructor(pGI: PermissionGroupInfo): this(pGI.name, pGI.packageName, pGI.labelRes, pGI.icon,
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
DSortBot.java112 @StringRes int labelRes = SortListFragment.getSheetLabelId(dimension, direction); in sortByMenu() local
113 onView(withText(mContext.getString(labelRes))).perform(click()); in sortByMenu()
119 UiObject2 verifyLabel = mDevice.findObject(By.text(mContext.getString(labelRes))); in sortByMenu()
121 onView(withText(mContext.getString(labelRes))).perform(click()); in sortByMenu()
/packages/apps/DocumentsUI/src/com/android/documentsui/files/
DFilesActivity.java209 int labelRes = intent.getIntExtra(LauncherActivity.TASK_LABEL_RES, -1); in updateTaskDescription() local
210 assert(labelRes > -1); in updateTaskDescription()
211 String label = getResources().getString(labelRes); in updateTaskDescription()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/accounts/
DAccountTypesHelperTest.java168 private void addAuthenticator(String type, int labelRes) { in addAuthenticator() argument
171 labelRes, 0, 0, 0, false)); in addAuthenticator()
/packages/apps/Contacts/src/com/android/contacts/editor/
DLabeledEditorView.java306 if (mType != null && mType.labelRes > 0 && mKind.titleRes > 0) { in rebuildLabel()
310 getContext().getString(mType.labelRes), in rebuildLabel()
654 text = getContext().getString(type.labelRes); in createViewFromResource()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DApplicationUtils.java40 return ai.labelRes; in getActivityTitleResId()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DSubScreenFragment.java89 final int applicationLabelRes = context.getApplicationInfo().labelRes;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardTextsSet.java48 context.getApplicationInfo().labelRes); in setLocale()
/packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/source/
DMediaSource.java136 if (serviceInfo != null && serviceInfo.labelRes != 0) { in extractDisplayName()
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DLauncherAccessibilityDelegate.java509 public LauncherAction(int id, int labelRes, int keyCode) { in LauncherAction() argument
511 accessibilityAction = new AccessibilityAction(id, mLauncher.getString(labelRes)); in LauncherAction()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DDataAction.java90 mSubtitle = context.getString(type.labelRes); in DataAction()
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DAddItemActivity.java160 widgetAppName.setText(getApplicationInfo().labelRes); in onCreate()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
DSetupWizardActivity.java138 final String applicationName = getResources().getString(getApplicationInfo().labelRes); in onCreate()
/packages/apps/Settings/src/com/android/settings/applications/
DProcessStatsDetail.java388 if (serviceInfo.labelRes != 0) { in getLabel()
DRunningState.java758 if (item != null && (item.labelRes != 0 in makeLabel()