Searched refs:isDisabled (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppInfo.java47 * {@see ShortcutInfo#isDisabled}
49 public int isDisabled = ShortcutInfo.DEFAULT; field in class:AppInfo
77 isDisabled |= ShortcutInfo.FLAG_DISABLED_SUSPENDED;
80 isDisabled |= ShortcutInfo.FLAG_DISABLED_QUIET_USER;
95 isDisabled = info.isDisabled;
124 public boolean isDisabled() { method in class:AppInfo
125 return isDisabled != 0;
H A DShortcutInfo.java119 public int isDisabled = DEFAULT; field in class:ShortcutInfo
145 isDisabled = info.isDisabled;
153 isDisabled = info.isDisabled;
222 isDisabled &= ~FLAG_DISABLED_BY_PUBLISHER;
224 isDisabled |= FLAG_DISABLED_BY_PUBLISHER;
236 public boolean isDisabled() { method in class:ShortcutInfo
237 return isDisabled != 0;
H A DFastBitmapDrawable.java220 public void setIsDisabled(boolean isDisabled) { argument
221 if (mIsDisabled != isDisabled) {
222 mIsDisabled = isDisabled;
H A DAllAppsList.java157 info.isDisabled = op.apply(info.isDisabled);
H A DItemInfo.java204 public boolean isDisabled() { method in class:ItemInfo
H A DBubbleTextView.java221 iconDrawable.setIsDisabled(info.isDisabled());
225 setContentDescription(info.isDisabled()
H A DLauncher.java2402 if (shortcut.isDisabled != 0) {
2403 if ((shortcut.isDisabled &
2416 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2418 } else if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_BY_PUBLISHER) != 0 ||
2419 (shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_LOCKED_USER) != 0) {
/packages/apps/Launcher3/src/com/android/launcher3/discovery/
H A DAppDiscoveryAppInfo.java44 this.isDisabled = ShortcutInfo.DEFAULT;
/packages/apps/Launcher3/src/com/android/launcher3/model/
H A DUserLockStateChangedTask.java90 si.isDisabled &= ~ShortcutInfo.FLAG_DISABLED_LOCKED_USER;
95 si.isDisabled |= ShortcutInfo.FLAG_DISABLED_LOCKED_USER;
H A DPackageUpdatedTask.java247 int oldDisabledFlags = si.isDisabled;
248 si.isDisabled = flagOp.apply(si.isDisabled);
249 if (si.isDisabled != oldDisabledFlags) {
H A DLoaderTask.java481 info.isDisabled |= ShortcutInfo.FLAG_DISABLED_SUSPENDED;
487 info.isDisabled |= ShortcutInfo.FLAG_DISABLED_LOCKED_USER;
518 info.isDisabled |= disabledState;
520 info.isDisabled |= ShortcutInfo.FLAG_DISABLED_SAFEMODE;
H A DLoaderCursor.java278 info.isDisabled = ShortcutInfo.FLAG_DISABLED_SUSPENDED;
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
H A DDeepShortcutManager.java71 && !info.isDisabled() && !isItemPromise;
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
H A DDragView.java267 if (info.isDisabled()) {

Completed in 324 milliseconds