/frameworks/base/core/java/android/content/pm/ |
D | PackageItemInfo.java | 132 public CharSequence nonLocalizedLabel; field in PackageItemInfo 176 nonLocalizedLabel = orig.nonLocalizedLabel; in PackageItemInfo() 177 if (nonLocalizedLabel != null) nonLocalizedLabel = nonLocalizedLabel.toString().trim(); in PackageItemInfo() 207 if (nonLocalizedLabel != null) { in loadUnsafeLabel() 208 return nonLocalizedLabel; in loadUnsafeLabel() 412 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0 || banner != 0) { in dumpFront() 414 + " nonLocalizedLabel=" + nonLocalizedLabel in dumpFront() 428 TextUtils.writeToParcel(nonLocalizedLabel, dest, parcelableFlags); in writeToParcel() 446 if (nonLocalizedLabel != null) { in writeToProto() 447 proto.write(PackageItemInfoProto.NON_LOCALIZED_LABEL, nonLocalizedLabel.toString()); in writeToProto() [all …]
|
D | ResolveInfo.java | 134 public CharSequence nonLocalizedLabel; field in ResolveInfo 208 if (nonLocalizedLabel != null) { in loadLabel() 209 return nonLocalizedLabel; in loadLabel() 341 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0) { in dump() 343 + " nonLocalizedLabel=" + nonLocalizedLabel in dump() 372 nonLocalizedLabel = orig.nonLocalizedLabel; in ResolveInfo() 437 TextUtils.writeToParcel(nonLocalizedLabel, dest, parcelableFlags); in writeToParcel() 484 nonLocalizedLabel in ResolveInfo()
|
D | LabeledIntent.java | 62 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()
|
D | ComponentInfo.java | 102 if (nonLocalizedLabel != null) { in loadUnsafeLabel() 103 return nonLocalizedLabel; in loadUnsafeLabel() 113 if (ai.nonLocalizedLabel != null) { in loadUnsafeLabel() 114 return ai.nonLocalizedLabel; in loadUnsafeLabel()
|
D | PermissionInfo.java | 619 if (nonLocalizedLabel != null) { in calculateFootprint() 620 size += nonLocalizedLabel.length(); in calculateFootprint()
|
D | PackageParser.java | 4289 outInfo.nonLocalizedLabel = null; in parsePackageItemInfo() 4294 outInfo.nonLocalizedLabel = null; in parsePackageItemInfo() 4310 outInfo.nonLocalizedLabel = v.coerceToString(); in parsePackageItemInfo() 4960 info.nonLocalizedLabel = target.info.nonLocalizedLabel; in parseActivityAlias() 5790 outInfo.nonLocalizedLabel = v.coerceToString(); in parseIntent() 8278 public CharSequence nonLocalizedLabel; field in IntentInfo 8295 nonLocalizedLabel = dest.readCharSequence(); in IntentInfo() 8307 dest.writeCharSequence(nonLocalizedLabel); in writeIntentInfoToParcel()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | SplashScreenStartingData.java | 40 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in SplashScreenStartingData() argument 46 mNonLocalizedLabel = nonLocalizedLabel; in SplashScreenStartingData()
|
D | ActivityRecord.java | 292 private CharSequence nonLocalizedLabel; // the label information from the package mgr. field in ActivityRecord 998 nonLocalizedLabel = aInfo.nonLocalizedLabel; in ActivityRecord() 1000 if (nonLocalizedLabel == null && labelRes == 0) { in ActivityRecord() 1002 nonLocalizedLabel = app.nonLocalizedLabel; in ActivityRecord() 1147 CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, in addStartingWindow() argument 1166 return mAppWindowToken.addStartingWindow(pkg, theme, compatInfo, nonLocalizedLabel, in addStartingWindow() 2649 compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags, in showStartingWindow()
|
D | AppWindowToken.java | 2081 CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags, in addStartingWindow() argument 2172 theme, compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags, in addStartingWindow()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ComponentResolver.java | 1125 final CharSequence label = a.info.nonLocalizedLabel != null in addActivity() 1126 ? a.info.nonLocalizedLabel in addActivity() 1154 + (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel in removeActivity() 1305 res.nonLocalizedLabel = info.nonLocalizedLabel; in newResult() 1411 + (p.info.nonLocalizedLabel != null in addProvider() 1412 ? p.info.nonLocalizedLabel in addProvider() 1435 Log.v(TAG, " " + (p.info.nonLocalizedLabel != null in removeProvider() 1436 ? p.info.nonLocalizedLabel in removeProvider() 1544 res.nonLocalizedLabel = info.nonLocalizedLabel; in newResult() 1635 + (s.info.nonLocalizedLabel != null in addService() [all …]
|
D | PackageManagerShellCommand.java | 3046 pw.print(loadText(pgi, pgi.labelRes, pgi.nonLocalizedLabel) + ": "); in doListPermissions() 3058 + loadText(pgi, pgi.labelRes, pgi.nonLocalizedLabel)); in doListPermissions() 3093 pi.nonLocalizedLabel)); in doListPermissions() 3106 pi.nonLocalizedLabel)); in doListPermissions()
|
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/ |
D | PackageUtil.java | 144 label = (appInfo.nonLocalizedLabel != null) ? in getAppSnippet() 145 appInfo.nonLocalizedLabel : appInfo.packageName; in getAppSnippet()
|
/frameworks/base/services/core/java/com/android/server/pm/permission/ |
D | BasePermission.java | 477 permissionInfo.nonLocalizedLabel = name; in generatePermissionInfo() 512 pi.nonLocalizedLabel = parser.getAttributeValue(null, "label"); in readLPw() 553 if (pi.nonLocalizedLabel != null) { in writeLPr() 554 serializer.attribute(null, "label", pi.nonLocalizedLabel.toString()); in writeLPr() 579 if (!compareStrings(pi1.nonLocalizedLabel, pi2.nonLocalizedLabel)) return false; in comparePermissionInfos()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/inputmethod/ |
D | InputMethodSubtypeSwitchingControllerTest.java | 79 si.nonLocalizedLabel = imeLabel; in addDummyImeSubtypeListItems() 116 si.nonLocalizedLabel = DUMMY_IME_LABEL; in createDummyItem()
|
D | InputMethodUtilsTest.java | 883 si.nonLocalizedLabel = label; in createDummyInputMethodInfo()
|
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/inputmethod/ |
D | InputMethodAndSubtypeUtilCompatTest.java | 249 si.nonLocalizedLabel = "Dummy IME"; in createDummyIme()
|
D | InputMethodAndSubtypeUtilTest.java | 241 si.nonLocalizedLabel = "Dummy IME"; in createDummyIme()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TestWindowManagerPolicy.java | 113 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | InputMethodInfo.java | 334 si.nonLocalizedLabel = label; in buildDummyResolveInfo()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | PackageParserTest.java | 325 assertEquals(aIntent.nonLocalizedLabel, bIntent.nonLocalizedLabel); in assertComponentsEqual()
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | WindowManagerPolicy.java | 969 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument
|
D | PhoneWindowManager.java | 2343 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument 2358 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme=" in addSplashScreen() 2405 win.setTitle(nonLocalizedLabel, false); in addSplashScreen()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
D | NetworkScorerAppManagerTest.java | 649 serviceInfo.serviceInfo.nonLocalizedLabel = MOCK_SERVICE_LABEL; in mockRecommendationServiceAvailable()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ResolverActivity.java | 1881 ri.nonLocalizedLabel = li.getNonLocalizedLabel();
|
/frameworks/base/services/tests/servicestests/src/com/android/server/net/ |
D | NetworkPolicyManagerServiceTest.java | 1818 ai.nonLocalizedLabel = label; in buildApplicationInfo()
|