Home
last modified time | relevance | path

Searched refs:shortLabel (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/content/pm/
DAppSearchShortcutInfo.java369 final String shortLabel = getPropertyString(KEY_SHORT_LABEL); in toShortcutInfo() local
422 userId, getId(), packageName, activity, icon, shortLabel, shortLabelResId, in toShortcutInfo()
484 public Builder setShortLabel(@Nullable final CharSequence shortLabel) { in setShortLabel() argument
485 if (!TextUtils.isEmpty(shortLabel)) { in setShortLabel()
487 shortLabel, "shortLabel cannot be empty").toString()); in setShortLabel()
DShortcutInfo.java1163 public Builder setShortLabel(@NonNull CharSequence shortLabel) { in setShortLabel() argument
1165 mTitle = Preconditions.checkStringNotEmpty(shortLabel, "shortLabel cannot be empty"); in setShortLabel()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java10174 final String shortLabel; field in ActivityManagerService.MemItem
10182 MemItem(String label, String shortLabel, long pss, long swapPss, long rss, int id, in MemItem() argument
10186 this.shortLabel = shortLabel; in MemItem()
10194 MemItem(String label, String shortLabel, long pss, long swapPss, long rss, int id) { in MemItem() argument
10197 this.shortLabel = shortLabel; in MemItem()
10240 pw.print("proc,"); pw.print(tag); pw.print(","); pw.print(mi.shortLabel); in dumpMemItems()
10246 pw.print(tag); pw.print(","); pw.print(mi.shortLabel); pw.print(","); in dumpMemItems()
10251 dumpMemItems(pw, prefix + " ", mi.shortLabel, mi.subitems, in dumpMemItems()
10268 proto.write(MemInfoDumpProto.MemItem.LABEL, mi.shortLabel); in dumpMemItems()
10278 dumpMemItems(proto, MemInfoDumpProto.MemItem.SUB_ITEMS, mi.shortLabel, mi.subitems, in dumpMemItems()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DBaseShortcutManagerTest.java1782 protected ShortcutInfo makeShortcutWithShortLabel(String id, String shortLabel) { in makeShortcutWithShortLabel() argument
1784 id, shortLabel, /* activity =*/ null, /* icon =*/ null, in makeShortcutWithShortLabel()