/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationViewHierarchyManagerTest.java | 77 @Spy private FakeListContainer mListContainer = new FakeListContainer(); field in NotificationViewHierarchyManagerTest 118 mViewHierarchyManager.setUpWithPresenter(mPresenter, mListContainer); in setUp() 137 mListContainer.addContainerView(entry0.getRow()); in testNotificationsBecomingBundled() 138 mListContainer.addContainerView(entry1.getRow()); in testNotificationsBecomingBundled() 139 mListContainer.addContainerView(entry2.getRow()); in testNotificationsBecomingBundled() 153 verify(mListContainer).notifyGroupChildAdded(entry1.getRow()); in testNotificationsBecomingBundled() 154 verify(mListContainer).notifyGroupChildAdded(entry2.getRow()); in testNotificationsBecomingBundled() 155 assertTrue(Lists.newArrayList(entry0.getRow()).equals(mListContainer.mRows)); in testNotificationsBecomingBundled() 168 mListContainer.addContainerView(entry0.getRow()); in testNotificationsBecomingUnbundled() 180 verify(mListContainer).notifyGroupChildRemoved( in testNotificationsBecomingUnbundled() [all …]
|
D | NonPhoneDependencyTest.java | 59 @Mock private NotificationListContainer mListContainer; field in NonPhoneDependencyTest 91 entryManager.setUpWithPresenter(mPresenter, mListContainer, mHeadsUpManager); in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager() 93 gutsManager.setUpWithPresenter(mPresenter, mListContainer, in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager() 95 notificationLogger.setUpWithContainer(mListContainer); in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager() 100 viewHierarchyManager.setUpWithPresenter(mPresenter, mListContainer); in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationViewHierarchyManager.java | 93 private NotificationListContainer mListContainer; field in NotificationViewHierarchyManager 132 mListContainer = listContainer; in setUpWithPresenter() 192 for (int i=0; i< mListContainer.getContainerChildCount(); i++) { in updateNotificationViews() 193 View child = mListContainer.getContainerChildAt(i); in updateNotificationViews() 209 mListContainer.setChildTransferInProgress(true); in updateNotificationViews() 214 mListContainer.removeContainerView(viewToRemove); in updateNotificationViews() 215 mListContainer.setChildTransferInProgress(false); in updateNotificationViews() 224 mListContainer.addContainerView(v); in updateNotificationViews() 225 } else if (!mListContainer.containsView(v)) { in updateNotificationViews() 239 for (int i = 0; i < mListContainer.getContainerChildCount(); i++) { in updateNotificationViews() [all …]
|
/frameworks/base/core/java/android/app/ |
D | ListFragment.java | 174 View mListContainer; field in ListFragment 219 mEmptyView = mProgressContainer = mListContainer = null; in onDestroyView() 355 mListContainer.startAnimation(AnimationUtils.loadAnimation( in setListShown() 359 mListContainer.clearAnimation(); in setListShown() 362 mListContainer.setVisibility(View.VISIBLE); in setListShown() 367 mListContainer.startAnimation(AnimationUtils.loadAnimation( in setListShown() 371 mListContainer.clearAnimation(); in setListShown() 374 mListContainer.setVisibility(View.GONE); in setListShown() 404 mListContainer = root.findViewById(com.android.internal.R.id.listContainer); in ensureList()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationListController.java | 40 private final NotificationListContainer mListContainer; field in NotificationListController 50 mListContainer = checkNotNull(listContainer); in NotificationListController() 71 mListContainer.cleanUpViewStateForEntry(entry);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationLoggerTest.java | 72 @Mock private NotificationListContainer mListContainer; field in NotificationLoggerTest 105 mLogger.setUpWithContainer(mListContainer); in setUp() 130 when(mListContainer.isInVisibleLocation(any())).thenReturn(true); in testOnChildLocationsChangedReportsVisibilityChanged() 152 when(mListContainer.isInVisibleLocation(any())).thenReturn(true); in testStoppingNotificationLoggingReportsCurrentNotifications()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationGutsManager.java | 96 private NotificationListContainer mListContainer; field in NotificationGutsManager 119 mListContainer = listContainer; in setUpWithPresenter() 199 mListContainer.onHeightChanged( in bindGuts() 243 notificationSnoozeView.setSnoozeListener(mListContainer.getSwipeActionHelper()); in initializeSnoozeView() 247 mListContainer.onHeightChanged(row, row.isShown() /* needsAnimation */); in initializeSnoozeView() 351 mListContainer.resetExposedMenuView(false /* animate */, true /* force */); in closeAndSaveGuts() 472 mListContainer.onHeightChanged(row, true /* needsAnimation */); in openGutsInternal()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationLogger.java | 79 private NotificationListContainer mListContainer; field in NotificationLogger 130 boolean isVisible = mListContainer.isInVisibleLocation(entry); 237 mListContainer = listContainer; in setUpWithContainer() 253 mListContainer.setChildLocationsChangedListener(null); in stopNotificationLogging() 257 mListContainer.setChildLocationsChangedListener(mNotificationLocationsChangedListener); in startNotificationLogging() 285 } else if (mListContainer.hasPulsingNotifications()) { in logNotificationClear()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationRowBinderImpl.java | 78 private NotificationListContainer mListContainer; field in NotificationRowBinderImpl 112 mListContainer = listContainer; in setUpWithPresenter() 131 ViewGroup parent = mListContainer.getViewParentForNotification(entry); in inflateViews() 164 mListContainer.bindRow(row); in bindRow()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | NotificationListControllerTest.java | 65 @Mock private NotificationListContainer mListContainer; field in NotificationListControllerTest 88 mListContainer, in setUp() 107 verify(mListContainer).cleanUpViewStateForEntry(entry); in testCleanUpViewStateOnEntryRemoved()
|
D | NotificationEntryManagerTest.java | 117 @Mock private NotificationListContainer mListContainer; field in NotificationEntryManagerTest 233 when(mListContainer.getViewParentForNotification(any())).thenReturn( in setUp() 247 mEntryManager.setUpWithPresenter(mPresenter, mListContainer, mHeadsUpManager); in setUp() 255 mPresenter, mListContainer, mHeadsUpManager, mEntryManager, mBindCallback); in setUp()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 7292 Landroid/app/ListFragment;->mListContainer:Landroid/view/View;
|