Home
last modified time | relevance | path

Searched refs:nonLocalizedLabel (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/base/core/java/android/content/pm/
DPackageItemInfo.java69 public CharSequence nonLocalizedLabel; field in PackageItemInfo
113 nonLocalizedLabel = orig.nonLocalizedLabel; in PackageItemInfo()
114 if (nonLocalizedLabel != null) nonLocalizedLabel = nonLocalizedLabel.toString().trim(); in PackageItemInfo()
134 if (nonLocalizedLabel != null) { in loadLabel()
135 return nonLocalizedLabel; in loadLabel()
374 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0 || banner != 0) { in dumpFront()
376 + " nonLocalizedLabel=" + nonLocalizedLabel in dumpFront()
390 TextUtils.writeToParcel(nonLocalizedLabel, dest, parcelableFlags); in writeToParcel()
402 nonLocalizedLabel in PackageItemInfo()
DLabeledIntent.java62 CharSequence nonLocalizedLabel, int icon) { in LabeledIntent() argument
66 mNonLocalizedLabel = nonLocalizedLabel; in LabeledIntent()
94 CharSequence nonLocalizedLabel, int icon) { in LabeledIntent() argument
97 mNonLocalizedLabel = nonLocalizedLabel; in LabeledIntent()
DResolveInfo.java132 public CharSequence nonLocalizedLabel; field in ResolveInfo
199 if (nonLocalizedLabel != null) { in loadLabel()
200 return nonLocalizedLabel; in loadLabel()
332 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0) { in dump()
334 + " nonLocalizedLabel=" + nonLocalizedLabel in dump()
363 nonLocalizedLabel = orig.nonLocalizedLabel; in ResolveInfo()
428 TextUtils.writeToParcel(nonLocalizedLabel, dest, parcelableFlags); in writeToParcel()
475 nonLocalizedLabel in ResolveInfo()
DComponentInfo.java100 if (nonLocalizedLabel != null) { in loadLabel()
101 return nonLocalizedLabel; in loadLabel()
111 if (ai.nonLocalizedLabel != null) { in loadLabel()
112 return ai.nonLocalizedLabel; in loadLabel()
DPackageParser.java4182 outInfo.nonLocalizedLabel = null; in parsePackageItemInfo()
4187 outInfo.nonLocalizedLabel = null; in parsePackageItemInfo()
4203 outInfo.nonLocalizedLabel = v.coerceToString(); in parsePackageItemInfo()
4799 info.nonLocalizedLabel = target.info.nonLocalizedLabel;
5642 outInfo.nonLocalizedLabel = v.coerceToString(); in parseIntent()
7472 public CharSequence nonLocalizedLabel; field in PackageParser.IntentInfo
7485 nonLocalizedLabel = dest.readCharSequence(); in IntentInfo()
7497 dest.writeCharSequence(nonLocalizedLabel); in writeIntentInfoToParcel()
/frameworks/base/services/core/java/com/android/server/wm/
DSplashScreenStartingData.java39 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in SplashScreenStartingData() argument
45 mNonLocalizedLabel = nonLocalizedLabel; in SplashScreenStartingData()
DAppWindowContainerController.java465 CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, in addStartingWindow() argument
562 compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags, in addStartingWindow()
/frameworks/base/core/tests/coretests/src/com/android/internal/inputmethod/
DInputMethodSubtypeSwitchingControllerTest.java67 si.nonLocalizedLabel = imeLabel; in addDummyImeSubtypeListItems()
103 si.nonLocalizedLabel = DUMMY_IME_LABEL; in createDummyItem()
DInputMethodUtilsTest.java837 si.nonLocalizedLabel = label; in createDummyInputMethodInfo()
/frameworks/base/services/core/java/com/android/server/am/
DActivityRecord.java239 private CharSequence nonLocalizedLabel; // the label information from the package mgr. field in ActivityRecord
864 nonLocalizedLabel = aInfo.nonLocalizedLabel; in ActivityRecord()
866 if (nonLocalizedLabel == null && labelRes == 0) { in ActivityRecord()
868 nonLocalizedLabel = app.nonLocalizedLabel; in ActivityRecord()
2171 compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags, in showStartingWindow()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerShellCommand.java1531 pw.print(loadText(pgi, pgi.labelRes, pgi.nonLocalizedLabel) + ": "); in doListPermissions()
1543 + loadText(pgi, pgi.labelRes, pgi.nonLocalizedLabel)); in doListPermissions()
1578 pi.nonLocalizedLabel)); in doListPermissions()
1591 pi.nonLocalizedLabel)); in doListPermissions()
DPackageManagerService.java4314 pi.nonLocalizedLabel = bp.name; in generatePermissionInfo()
5534 if (!compareStrings(pi1.nonLocalizedLabel, pi2.nonLocalizedLabel)) return false; in comparePermissionInfos()
5547 if (info.nonLocalizedLabel != null) size += info.nonLocalizedLabel.length(); in permissionInfoFootprint()
5577 if (info.labelRes == 0 && info.nonLocalizedLabel == null) { in addPermissionLocked()
13932 (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel : a.info.name) + ":"); in addActivity()
13960 + (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel in removeActivity()
14072 res.nonLocalizedLabel = info.nonLocalizedLabel; in newResult()
14169 + (s.info.nonLocalizedLabel != null in addService()
14170 ? s.info.nonLocalizedLabel : s.info.name) + ":"); in addService()
14191 Log.v(TAG, " " + (s.info.nonLocalizedLabel != null in removeService()
[all …]
DSettings.java2995 if (pi.nonLocalizedLabel != null) { in writePermissionLPr()
2996 serializer.attribute(null, "label", pi.nonLocalizedLabel.toString()); in writePermissionLPr()
3645 pi.nonLocalizedLabel = parser.getAttributeValue(null, "label"); in readPermissionsLPw()
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
DTestWindowManagerPolicy.java210 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DPackageParserTest.java307 assertEquals(aIntent.nonLocalizedLabel, bIntent.nonLocalizedLabel); in assertComponentsEqual()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodInfo.java321 si.nonLocalizedLabel = label; in buildDummyResolveInfo()
/frameworks/base/core/java/android/view/
DWindowManagerPolicy.java1008 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument
/frameworks/base/core/java/android/widget/
DAppSecurityPermissions.java624 if (pgrp.labelRes != 0 || pgrp.nonLocalizedLabel != null) { in setPermissions()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DNetworkScorerAppManagerTest.java654 serviceInfo.serviceInfo.nonLocalizedLabel = MOCK_SERVICE_LABEL; in mockRecommendationServiceAvailable()
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java988 ri.nonLocalizedLabel = li.getNonLocalizedLabel(); in ChooserListAdapter()
DResolverActivity.java1527 ri.nonLocalizedLabel = li.getNonLocalizedLabel(); in processSortedList()
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java2853 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument
2868 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme=" in addSplashScreen()
2915 win.setTitle(nonLocalizedLabel, false); in addSplashScreen()
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt8675 field public java.lang.CharSequence nonLocalizedLabel;
8976 field public java.lang.CharSequence nonLocalizedLabel;
/frameworks/base/api/
Dcurrent.txt10577 field public java.lang.CharSequence nonLocalizedLabel;
10941 field public java.lang.CharSequence nonLocalizedLabel;
Dtest-current.txt10615 field public java.lang.CharSequence nonLocalizedLabel;
10983 field public java.lang.CharSequence nonLocalizedLabel;

12