/frameworks/base/core/java/android/content/pm/ |
PackageItemInfo.java | 61 public CharSequence nonLocalizedLabel; 92 nonLocalizedLabel = orig.nonLocalizedLabel; 93 if (nonLocalizedLabel != null) nonLocalizedLabel = nonLocalizedLabel.toString().trim(); 111 if (nonLocalizedLabel != null) { 112 return nonLocalizedLabel; 227 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0) { 229 + " nonLocalizedLabel=" + nonLocalizedLabe [all...] |
ComponentInfo.java | 79 if (nonLocalizedLabel != null) { 80 return nonLocalizedLabel; 90 if (ai.nonLocalizedLabel != null) { 91 return ai.nonLocalizedLabel;
|
LabeledIntent.java | 58 * @param nonLocalizedLabel Concrete text to use for the label. 62 CharSequence nonLocalizedLabel, int icon) { 66 mNonLocalizedLabel = nonLocalizedLabel; 90 * @param nonLocalizedLabel Concrete text to use for the label. 94 CharSequence nonLocalizedLabel, int icon) { 97 mNonLocalizedLabel = nonLocalizedLabel;
|
ResolveInfo.java | 114 public CharSequence nonLocalizedLabel; 153 if (nonLocalizedLabel != null) { 154 return nonLocalizedLabel; 235 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0) { 237 + " nonLocalizedLabel=" + nonLocalizedLabel 265 nonLocalizedLabel = orig.nonLocalizedLabel; 320 TextUtils.writeToParcel(nonLocalizedLabel, dest, parcelableFlags); 362 nonLocalizedLabel [all...] |
PackageParser.java | [all...] |
/frameworks/base/services/java/com/android/server/wm/ |
StartingData.java | 25 final CharSequence nonLocalizedLabel; 37 nonLocalizedLabel = _nonLocalizedLabel;
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
PackageItemInfoTest.java | 88 assertEquals(expected.nonLocalizedLabel, actual.nonLocalizedLabel);
|
ResolveInfoTest.java | 67 assertEquals(resolveInfo.nonLocalizedLabel, infoFromParcel.nonLocalizedLabel);
|
ComponentInfoTest.java | 191 mComponentInfo.nonLocalizedLabel = "nonLocalizedLabel"; 192 assertEquals("nonLocalizedLabel", mComponentInfo.loadLabel(pm)); 194 mComponentInfo.nonLocalizedLabel = null; 202 mComponentInfo.nonLocalizedLabel = null;
|
PackageManagerTest.java | 401 permissionInfo.nonLocalizedLabel = "Test Tree";
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
RobolectricPackageManagerTest.java | 79 info.nonLocalizedLabel = TEST_PACKAGE_LABEL; 86 assertThat(activities.get(0).nonLocalizedLabel.toString(), equalTo(TEST_PACKAGE_LABEL)); 93 info.nonLocalizedLabel = TEST_PACKAGE_LABEL; 112 info.nonLocalizedLabel = TEST_PACKAGE_LABEL;
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
PackageUtil.java | 173 label = (appInfo.nonLocalizedLabel != null) ? 174 appInfo.nonLocalizedLabel : appInfo.packageName;
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
InputMethodInfoTest.java | 124 assertEquals(expected.nonLocalizedLabel, actual.nonLocalizedLabel);
|
/frameworks/base/core/java/android/view/ |
IWindowManager.aidl | 97 in CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
|
WindowManagerPolicy.java | 643 * @param nonLocalizedLabel The default title label of the application if 655 int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, [all...] |
/frameworks/base/services/java/com/android/server/am/ |
ActivityRecord.java | 89 CharSequence nonLocalizedLabel; // the label information from the package mgr. 402 nonLocalizedLabel = aInfo.nonLocalizedLabel; 404 if (nonLocalizedLabel == null && labelRes == 0) { 406 nonLocalizedLabel = app.nonLocalizedLabel; [all...] |
ActivityStack.java | [all...] |
/frameworks/base/core/tests/inputmethodtests/src/android/os/ |
InputMethodTest.java | 103 si.nonLocalizedLabel = label;
|
/development/apps/Development/src/com/android/development/ |
PackageSummary.java | 104 label = info.applicationInfo.nonLocalizedLabel;
|
/frameworks/base/cmds/pm/src/com/android/commands/pm/ |
Pm.java | 603 pgi.nonLocalizedLabel) + ": "); 617 pgi.nonLocalizedLabel)); 653 pi.nonLocalizedLabel)); 666 pi.nonLocalizedLabel)); [all...] |
/frameworks/base/core/java/android/view/inputmethod/ |
InputMethodInfo.java | 294 si.nonLocalizedLabel = label;
|
/frameworks/base/services/java/com/android/server/pm/ |
PackageManagerService.java | [all...] |
/frameworks/base/core/java/android/widget/ |
AppSecurityPermissions.java | 644 if (pgrp.labelRes != 0 || pgrp.nonLocalizedLabel != null) {
|
/frameworks/base/core/java/com/android/internal/app/ |
ResolverActivity.java | 563 ri.nonLocalizedLabel = li.getNonLocalizedLabel();
|
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningState.java | 714 || item.nonLocalizedLabel != null)) { [all...] |