HomeSort by relevance Sort by last modified time
    Searched refs:nonLocalizedLabel (Results 1 - 25 of 36) sorted by null

1 2

  /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 102 public CharSequence nonLocalizedLabel;
134 if (nonLocalizedLabel != null) {
135 return nonLocalizedLabel;
216 if (labelRes != 0 || nonLocalizedLabel != null || icon != 0) {
218 + " nonLocalizedLabel=" + nonLocalizedLabel
242 nonLocalizedLabel = orig.nonLocalizedLabel;
281 TextUtils.writeToParcel(nonLocalizedLabel, dest, parcelableFlags);
320 nonLocalizedLabel
    [all...]
PackageParser.java     [all...]
  /frameworks/base/services/java/com/android/server/wm/
StartingData.java 25 final CharSequence nonLocalizedLabel;
36 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;
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 117 assertEquals(expected.nonLocalizedLabel, actual.nonLocalizedLabel);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 173 label = (appInfo.nonLocalizedLabel != null) ?
174 appInfo.nonLocalizedLabel : appInfo.packageName;
  /frameworks/base/services/java/com/android/server/am/
ActivityRecord.java 79 CharSequence nonLocalizedLabel; // the label information from the package mgr.
385 nonLocalizedLabel = aInfo.nonLocalizedLabel;
387 if (nonLocalizedLabel == null && labelRes == 0) {
389 nonLocalizedLabel = app.nonLocalizedLabel;
    [all...]
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 99 in CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
WindowManagerPolicy.java 627 * @param nonLocalizedLabel The default title label of the application if
639 int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel,
    [all...]
  /frameworks/base/core/tests/inputmethodtests/src/android/os/
InputMethodTest.java 103 si.nonLocalizedLabel = label;
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 267 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 586 pgi.nonLocalizedLabel) + ": ");
600 pgi.nonLocalizedLabel));
636 pi.nonLocalizedLabel));
649 pi.nonLocalizedLabel));
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java     [all...]
Settings.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 506 ri.nonLocalizedLabel = li.getNonLocalizedLabel();
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 708 || item.nonLocalizedLabel != null)) {
    [all...]

Completed in 352 milliseconds

1 2