/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | HeadsUpManager.java | 124 @NonNull HeadsUpManager.HeadsUpEntry headsUpEntry, boolean isPinned) { in setEntryPinned() argument 126 Log.v(TAG, "setEntryPinned: " + isPinned); in setEntryPinned() 129 if (entry.isRowPinned() != isPinned) { in setEntryPinned() 130 entry.setRowPinned(isPinned); in setEntryPinned() 133 if (isPinned) { in setEntryPinned() 380 boolean isPinned = mEntry.isRowPinned(); in compareTo() 382 if (isPinned && !otherPinned) { in compareTo() 384 } else if (!isPinned && otherPinned) { in compareTo()
|
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/ |
D | ShortcutManagerTestUtils.java | 529 assertTrue("ID " + s.getId(), s.isPinned()); in assertAllPinned() 537 assertTrue("ID " + s.getId(), s.isDynamic() || s.isPinned()); in assertAllDynamicOrPinned() 584 assertFalse(si.isPinned()); in assertDynamicOnly() 590 assertTrue(si.isPinned()); in assertPinnedOnly() 595 assertTrue(si.isPinned()); in assertDynamicAndPinned() 792 filter(mList, ShortcutInfo::isPinned)); in selectPinned() 797 filter(mList, (si -> si.isPinned() in selectFloating() 878 forAllShortcuts(s -> assertTrue("id=" + s.getId(), s.isPinned())); in areAllPinned() 883 forAllShortcuts(s -> assertFalse("id=" + s.getId(), s.isPinned())); in areAllNotPinned() 922 s.isPinned() && !s.isDeclaredInManifest() && !s.isDynamic())); in areAllFloating() [all …]
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | ShortcutManagerTest10.java | 95 assertTrue(mRequest.getShortcutInfo().isPinned()); in testCreateShortcutResult_alreadyPinned() 119 assertFalse(mRequest.getShortcutInfo().isPinned()); in testCreateShortcutResult_alreadyPinnedByAnother()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | AbstractResolverComparator.java | 176 final boolean lPinned = lhsp.isPinned(); in compare() 177 final boolean rPinned = rhsp.isPinned(); in compare()
|
D | ResolverActivity.java | 1540 public boolean isPinned() { 1651 boolean isPinned(); 1958 dri.setPinned(rci.isPinned()); 1959 if (rci.isPinned()) { 2172 public boolean isPinned() {
|
D | ChooserActivity.java | 2254 public boolean isPinned() { 2345 public boolean isPinned() { 2346 return mSourceInfo != null && mSourceInfo.isPinned();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationShelf.java | 285 || row.isPinned(); in updateAppearance() 495 boolean isPinned = (row.isPinned() || row.isHeadsUpAnimatingAway()) 504 && (mAmbientState.isShadeExpanded() || !isPinned)) { 506 if (isPinned) { 592 || (!row.isPinned() && !row.isHeadsUpAnimatingAway()))) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpTouchHelper.java | 82 && mPickedChild.isHeadsUp() && mPickedChild.isPinned(); in onInterceptTouchEvent()
|
D | StatusBarRemoteInputCallback.java | 111 if (!row.isPinned()) { in onLockedRemoteInput()
|
D | HeadsUpAppearanceController.java | 435 if (row.isPinned() || row.isHeadsUpAnimatingAway() || row == mTrackedChild in updateHeader()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationRoundnessManager.java | 130 if ((view.isPinned() || view.isHeadsUpAnimatingAway()) && !mExpanded) { in getRoundness()
|
D | StackScrollAlgorithm.java | 175 && ((ExpandableNotificationRow) child).isPinned(); in updateClipping() 542 if (row.isPinned()) {
|
D | NotificationStackScrollLayout.java | 932 if ((row.isPinned() || row.isHeadsUpAnimatingAway()) && row.getTranslation() < 0 1062 if (mAnimationsEnabled && (mIsExpanded || row != null && row.isPinned())) { 1542 return row.isHeadsUp() && row.isPinned(); 1626 if (!mIsExpanded && row.isHeadsUp() && row.isPinned() 3432 boolean pinnedAndClosed = row.isPinned() && !mIsExpanded; 6312 if (row.isPinned() && !canChildBeDismissed(row) 6471 && (mIsExpanded || changedRow.isPinned()); 6516 && (mIsExpanded || !((ExpandableNotificationRow) v).isPinned());
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ShortcutPackage.java | 300 wasPinned = oldShortcut.isPinned(); in addOrReplaceDynamicShortcut() 421 if (oldShortcut.isPinned()) { in deleteOrDisableWithId() 1004 if (oldShortcut.isPinned()) { in publishManifestShortcuts() 1434 if (si.isPinned()) numPinned++; in dumpCheckin() 1491 if (!(si.isPinned() && si.isEnabled())) { in saveShortcut() 1871 if (!(si.isDeclaredInManifest() || si.isDynamic() || si.isPinned())) { in verifyStates()
|
D | ShortcutService.java | 2648 if ((matchPinned || getPinnedByAnyLauncher) && si.isPinned()) { in getShortcutsInnerLocked() 2674 return si != null && si.isPinned(); in isPinnedByCaller()
|
/frameworks/base/core/java/android/content/pm/ |
D | ShortcutInfo.java | 1689 public boolean isPinned() { in isPinned() method in ShortcutInfo 1718 return isPinned() && !(isDynamic() || isManifestShortcut()); in isFloating() 1733 return isPinned() && isVisibleToPublisher(); in isPinnedVisible() 2183 if (isPinned()) { in toStringInner()
|
/frameworks/av/services/audioflinger/ |
D | DeviceEffectManager.cpp | 180 bool remove = (effect->removeHandle(handle) == 0) && (!effect->isPinned() || unpinIfLast); in disconnectEffectHandle()
|
D | Effects.h | 153 bool isPinned() const { return mPinned; } in isPinned() function
|
D | Effects.cpp | 3177 bool remove = (effect->removeHandle(handle) == 0) && (!effect->isPinned() || unpinIfLast); in disconnectEffectHandle()
|
D | Threads.cpp | 1432 remove = (effect->removeHandle(handle) == 0) && (!effect->isPinned() || unpinIfLast); in disconnectEffectHandle()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRow.java | 278 if (isPinned()) { 975 public boolean isPinned() { 1033 running = running || isPinned(); 2326 if (isPinned() || mHeadsupDisappearRunning) {
|
D | ActivatableNotificationView.java | 1031 public boolean isPinned() { in isPinned() method in ActivatableNotificationView
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationEntry.java | 573 return row != null && row.isPinned(); in isRowPinned()
|
/frameworks/base/non-updatable-api/ |
D | current.txt | 12036 method public boolean isPinned();
|
/frameworks/base/api/ |
D | current.txt | 12036 method public boolean isPinned();
|