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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManager.java229 private void setEntryPinned(HeadsUpEntry headsUpEntry, boolean isPinned) { argument
231 if (row.isPinned() != isPinned) {
232 row.setPinned(isPinned);
235 if (isPinned) {
248 setEntryPinned(remove, false /* isPinned */);
447 if (entry.entry.row.isPinned()) {
466 setEntryPinned(entry, false /* isPinned */);
691 return (entry.row.isPinned() && expanded)
697 boolean isPinned
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverComparator.java177 final boolean lPinned = lhsp.isPinned();
178 final boolean rPinned = rhsp.isPinned();
H A DResolverActivity.java1124 public boolean isPinned() { method in class:ResolverActivity.DisplayResolveInfo
1236 boolean isPinned(); method in interface:ResolverActivity.TargetInfo
1584 dri.setPinned(rci.isPinned());
1786 public boolean isPinned() { method in class:ResolverActivity.ResolvedComponentInfo
H A DChooserActivity.java791 public boolean isPinned() { method in class:ChooserActivity.ChooserTargetInfo
792 return mSourceInfo != null ? mSourceInfo.isPinned() : false;
890 if (target.isPinned()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpTouchHelper.java83 && mPickedChild.isHeadsUp() && mPickedChild.isPinned();
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java513 assertTrue("ID " + s.getId(), s.isPinned());
521 assertTrue("ID " + s.getId(), s.isDynamic() || s.isPinned());
568 assertFalse(si.isPinned());
574 assertTrue(si.isPinned());
579 assertTrue(si.isPinned());
764 filter(mList, ShortcutInfo::isPinned));
844 forAllShortcuts(s -> assertTrue("id=" + s.getId(), s.isPinned()));
849 forAllShortcuts(s -> assertFalse("id=" + s.getId(), s.isPinned()));
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutPackage.java242 wasPinned = oldShortcut.isPinned();
355 if (oldShortcut.isPinned()) {
510 * by the calling launcher will not be included in the result, and also "isPinned" will be
544 // Fix up isPinned for the caller. Note we need to do it before the "test" callback,
545 // since it may check isPinned.
801 if (oldShortcut.isPinned()) {
1228 if (si.isPinned()) numPinned++;
1273 if (!(si.isPinned() && si.isEnabled())) {
1555 if (!(si.isDeclaredInManifest() || si.isDynamic() || si.isPinned())) {
H A DShortcutService.java1960 ShortcutInfo::isPinned);
2334 && si.isPinned()) {
2360 return si != null && si.isPinned();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackScrollAlgorithm.java156 && ((ExpandableNotificationRow) child).isPinned();
423 if (row.isPinned()) {
H A DNotificationStackScrollLayout.java526 if (mAnimationsEnabled && (mIsExpanded || row != null && row.isPinned())) {
896 return row.isHeadsUp() && row.isPinned();
997 if (!mIsExpanded && row.isHeadsUp() && row.isPinned()
1017 && (mIsExpanded || !((ExpandableNotificationRow) v).isPinned());
2082 if (row.isPinned()) {
2699 boolean pinnedAndClosed = row.isPinned() && !mIsExpanded;
3698 && (mIsExpanded || changedRow.isPinned());
/frameworks/av/services/audioflinger/
H A DEffects.h115 bool isPinned() const { return mPinned; } function in class:EffectModule
H A DThreads.cpp1510 remove = (effect->removeHandle(handle) == 0) && (!effect->isPinned() || unpinIfLast);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java157 if (isPinned()) {
531 public boolean isPinned() { method in class:ExpandableNotificationRow
584 running = running || isPinned();
1219 if (isPinned() || mHeadsupDisappearRunning) {
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java1339 public boolean isPinned() { method in class:ShortcutInfo
1368 return isPinned() && !(isDynamic() || isManifestShortcut());
1447 * <li>{@link #isPinned()}
1741 if (isPinned()) {

Completed in 407 milliseconds