Searched defs:ShortcutInfo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/policy/
H A DShortcutManager.java55 private final SparseArray<ShortcutInfo> mShortcuts = new SparseArray<>();
56 private final SparseArray<ShortcutInfo> mShiftShortcuts = new SparseArray<>();
81 ShortcutInfo shortcut = null;
85 SparseArray<ShortcutInfo> shortcutMap = isShiftOn ? mShiftShortcuts : mShortcuts;
175 ShortcutInfo shortcut = new ShortcutInfo(title, intent);
189 private static final class ShortcutInfo { class in class:ShortcutManager
193 public ShortcutInfo(String title, Intent intent) { method in class:ShortcutManager.ShortcutInfo
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java53 public final class ShortcutInfo implements Parcelable { class in inherits:Parcelable
227 private ShortcutInfo(Builder b) { method in class:ShortcutInfo
330 private ShortcutInfo(ShortcutInfo source, @CloneFlags int cloneFlags) { method in class:ShortcutInfo
591 * Copy a {@link ShortcutInfo}, optionally removing fields.
594 public ShortcutInfo clone(@CloneFlags int cloneFlags) {
595 return new ShortcutInfo(this, cloneFlags);
601 public void ensureUpdatableWith(ShortcutInfo source) {
606 Preconditions.checkState(!isImmutable(), "Target ShortcutInfo is immutable");
610 * Copy non-null/zero fields from another {@link ShortcutInfo}
1601 private ShortcutInfo(Parcel source) { method in class:ShortcutInfo
1842 public ShortcutInfo( method in class:ShortcutInfo
[all...]

Completed in 106 milliseconds