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
243 private ShortcutInfo(Builder b) { method in class:ShortcutInfo
348 private ShortcutInfo(ShortcutInfo source, @CloneFlags int cloneFlags) { method in class:ShortcutInfo
609 * Copy a {@link ShortcutInfo}, optionally removing fields.
612 public ShortcutInfo clone(@CloneFlags int cloneFlags) {
613 return new ShortcutInfo(this, cloneFlags);
619 public void ensureUpdatableWith(ShortcutInfo source) {
624 Preconditions.checkState(!isImmutable(), "Target ShortcutInfo is immutable");
628 * Copy non-null/zero fields from another {@link ShortcutInfo}
1661 private ShortcutInfo(Parcel source) { method in class:ShortcutInfo
1908 public ShortcutInfo( method in class:ShortcutInfo
[all...]

Completed in 2610 milliseconds