Home
last modified time | relevance | path

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

12

/frameworks/base/core/java/android/content/pm/
DPackageItemInfo.java132 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 …]
DResolveInfo.java134 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()
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()
DComponentInfo.java102 if (nonLocalizedLabel != null) { in loadUnsafeLabel()
103 return nonLocalizedLabel; in loadUnsafeLabel()
113 if (ai.nonLocalizedLabel != null) { in loadUnsafeLabel()
114 return ai.nonLocalizedLabel; in loadUnsafeLabel()
DPermissionInfo.java619 if (nonLocalizedLabel != null) { in calculateFootprint()
620 size += nonLocalizedLabel.length(); in calculateFootprint()
DPackageParser.java4289 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/
DSplashScreenStartingData.java40 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in SplashScreenStartingData() argument
46 mNonLocalizedLabel = nonLocalizedLabel; in SplashScreenStartingData()
DActivityRecord.java292 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()
DAppWindowToken.java2081 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/
DComponentResolver.java1125 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 …]
DPackageManagerShellCommand.java3046 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/
DPackageUtil.java144 label = (appInfo.nonLocalizedLabel != null) ? in getAppSnippet()
145 appInfo.nonLocalizedLabel : appInfo.packageName; in getAppSnippet()
/frameworks/base/services/core/java/com/android/server/pm/permission/
DBasePermission.java477 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/
DInputMethodSubtypeSwitchingControllerTest.java79 si.nonLocalizedLabel = imeLabel; in addDummyImeSubtypeListItems()
116 si.nonLocalizedLabel = DUMMY_IME_LABEL; in createDummyItem()
DInputMethodUtilsTest.java883 si.nonLocalizedLabel = label; in createDummyInputMethodInfo()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/inputmethod/
DInputMethodAndSubtypeUtilCompatTest.java249 si.nonLocalizedLabel = "Dummy IME"; in createDummyIme()
DInputMethodAndSubtypeUtilTest.java241 si.nonLocalizedLabel = "Dummy IME"; in createDummyIme()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTestWindowManagerPolicy.java113 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodInfo.java334 si.nonLocalizedLabel = label; in buildDummyResolveInfo()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DPackageParserTest.java325 assertEquals(aIntent.nonLocalizedLabel, bIntent.nonLocalizedLabel); in assertComponentsEqual()
/frameworks/base/services/core/java/com/android/server/policy/
DWindowManagerPolicy.java969 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes, int icon, in addSplashScreen() argument
DPhoneWindowManager.java2343 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/
DNetworkScorerAppManagerTest.java649 serviceInfo.serviceInfo.nonLocalizedLabel = MOCK_SERVICE_LABEL; in mockRecommendationServiceAvailable()
/frameworks/base/core/java/com/android/internal/app/
DResolverActivity.java1881 ri.nonLocalizedLabel = li.getNonLocalizedLabel();
/frameworks/base/services/tests/servicestests/src/com/android/server/net/
DNetworkPolicyManagerServiceTest.java1818 ai.nonLocalizedLabel = label; in buildApplicationInfo()

12