Home
last modified time | relevance | path

Searched refs:mListContainer (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManagerTest.java76 @Spy private FakeListContainer mListContainer = new FakeListContainer(); field in NotificationViewHierarchyManagerTest
114 mViewHierarchyManager.setUpWithPresenter(mPresenter, mListContainer); in setUp()
133 mListContainer.addContainerView(entry0.getRow()); in testNotificationsBecomingBundled()
134 mListContainer.addContainerView(entry1.getRow()); in testNotificationsBecomingBundled()
135 mListContainer.addContainerView(entry2.getRow()); in testNotificationsBecomingBundled()
149 verify(mListContainer).notifyGroupChildAdded(entry1.getRow()); in testNotificationsBecomingBundled()
150 verify(mListContainer).notifyGroupChildAdded(entry2.getRow()); in testNotificationsBecomingBundled()
151 assertTrue(Lists.newArrayList(entry0.getRow()).equals(mListContainer.mRows)); in testNotificationsBecomingBundled()
164 mListContainer.addContainerView(entry0.getRow()); in testNotificationsBecomingUnbundled()
176 verify(mListContainer).notifyGroupChildRemoved( in testNotificationsBecomingUnbundled()
[all …]
DNonPhoneDependencyTest.java59 @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/
DNotificationViewHierarchyManager.java91 private NotificationListContainer mListContainer; field in NotificationViewHierarchyManager
128 mListContainer = listContainer; in setUpWithPresenter()
188 for (int i=0; i< mListContainer.getContainerChildCount(); i++) { in updateNotificationViews()
189 View child = mListContainer.getContainerChildAt(i); in updateNotificationViews()
205 mListContainer.setChildTransferInProgress(true); in updateNotificationViews()
210 mListContainer.removeContainerView(viewToRemove); in updateNotificationViews()
211 mListContainer.setChildTransferInProgress(false); in updateNotificationViews()
220 mListContainer.addContainerView(v); in updateNotificationViews()
221 } else if (!mListContainer.containsView(v)) { in updateNotificationViews()
235 for (int i = 0; i < mListContainer.getContainerChildCount(); i++) { in updateNotificationViews()
[all …]
/frameworks/base/core/java/android/app/
DListFragment.java174 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/
DNotificationListController.java40 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/
DNotificationLoggerTest.java72 @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/
DNotificationGutsManager.java96 private NotificationListContainer mListContainer; field in NotificationGutsManager
118 mListContainer = listContainer; in setUpWithPresenter()
198 mListContainer.onHeightChanged( in bindGuts()
242 notificationSnoozeView.setSnoozeListener(mListContainer.getSwipeActionHelper()); in initializeSnoozeView()
246 mListContainer.onHeightChanged(row, row.isShown() /* needsAnimation */); in initializeSnoozeView()
349 mListContainer.resetExposedMenuView(false /* animate */, true /* force */); in closeAndSaveGuts()
473 mListContainer.onHeightChanged(row, true /* needsAnimation */); in openGutsInternal()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java79 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/
DNotificationRowBinderImpl.java75 private NotificationListContainer mListContainer; field in NotificationRowBinderImpl
105 mListContainer = listContainer; in setUpWithPresenter()
124 ViewGroup parent = mListContainer.getViewParentForNotification(entry); in inflateViews()
154 mListContainer.bindRow(row); in bindRow()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationListControllerTest.java65 @Mock private NotificationListContainer mListContainer; field in NotificationListControllerTest
88 mListContainer, in setUp()
107 verify(mListContainer).cleanUpViewStateForEntry(entry); in testCleanUpViewStateOnEntryRemoved()
DNotificationEntryManagerTest.java115 @Mock private NotificationListContainer mListContainer; field in NotificationEntryManagerTest
231 when(mListContainer.getViewParentForNotification(any())).thenReturn( in setUp()
245 mEntryManager.setUpWithPresenter(mPresenter, mListContainer, mHeadsUpManager); in setUp()
252 mPresenter, mListContainer, mHeadsUpManager, mEntryManager, mBindCallback); in setUp()
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt7787 Landroid/app/ListFragment;->mListContainer:Landroid/view/View;