Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManagerTest.java77 @Spy private FakeListContainer mListContainer = new FakeListContainer(); field in NotificationViewHierarchyManagerTest
117 mViewHierarchyManager.setUpWithPresenter(mPresenter, mListContainer); in setUp()
134 mListContainer.addContainerView(entry0.getRow()); in testNotificationsBecomingBundled()
135 mListContainer.addContainerView(entry1.getRow()); in testNotificationsBecomingBundled()
136 mListContainer.addContainerView(entry2.getRow()); in testNotificationsBecomingBundled()
150 verify(mListContainer).notifyGroupChildAdded(entry1.getRow()); in testNotificationsBecomingBundled()
151 verify(mListContainer).notifyGroupChildAdded(entry2.getRow()); in testNotificationsBecomingBundled()
152 assertTrue(Lists.newArrayList(entry0.getRow()).equals(mListContainer.mRows)); in testNotificationsBecomingBundled()
165 mListContainer.addContainerView(entry0.getRow()); in testNotificationsBecomingUnbundled()
177 verify(mListContainer).notifyGroupChildRemoved( in testNotificationsBecomingUnbundled()
[all …]
DNonPhoneDependencyTest.java57 @Mock private NotificationListContainer mListContainer; field in NonPhoneDependencyTest
90 gutsManager.setUpWithPresenter(mPresenter, mListContainer, in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager()
92 notificationLogger.setUpWithContainer(mListContainer); in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager()
97 viewHierarchyManager.setUpWithPresenter(mPresenter, mListContainer); in testNotificationManagementCodeHasNoDependencyOnStatusBarWindowManager()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java93 private NotificationListContainer mListContainer; field in NotificationViewHierarchyManager
139 mListContainer = listContainer; in setUpWithPresenter()
235 for (int i=0; i< mListContainer.getContainerChildCount(); i++) { in updateNotificationViews()
236 View child = mListContainer.getContainerChildAt(i); in updateNotificationViews()
252 mListContainer.setChildTransferInProgress(true); in updateNotificationViews()
257 mListContainer.removeContainerView(viewToRemove); in updateNotificationViews()
258 mListContainer.setChildTransferInProgress(false); in updateNotificationViews()
267 mListContainer.addContainerView(v); in updateNotificationViews()
268 } else if (!mListContainer.containsView(v)) { in updateNotificationViews()
282 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.java35 private final NotificationListContainer mListContainer; field in NotificationListController
43 mListContainer = Objects.requireNonNull(listContainer); in NotificationListController()
64 mListContainer.cleanUpViewStateForEntry(entry);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationListControllerTest.java57 @Mock private NotificationListContainer mListContainer; field in NotificationListControllerTest
75 mListContainer, in setUp()
94 verify(mListContainer).cleanUpViewStateForEntry(entry); in testCleanUpViewStateOnEntryRemoved()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotificationRowBinderImpl.java70 private NotificationListContainer mListContainer; field in NotificationRowBinderImpl
107 mListContainer = listContainer; in setUpWithPresenter()
126 ViewGroup parent = mListContainer.getViewParentForNotification(entry); in inflateViews()
166 mListContainer.bindRow(row); in bindRow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManager.java109 private NotificationListContainer mListContainer; field in NotificationGutsManager
163 mListContainer = listContainer; in setUpWithPresenter()
247 mListContainer.onHeightChanged( in bindGuts()
297 notificationSnoozeView.setSnoozeListener(mListContainer.getSwipeActionHelper()); in initializeSnoozeView()
301 mListContainer.onHeightChanged(row, row.isShown() /* needsAnimation */); in initializeSnoozeView()
456 mListContainer.getSwipeActionHelper().snooze(sbn, hours); in initializeConversationNotificationInfo()
517 mListContainer.resetExposedMenuView(false /* animate */, true /* force */); in closeAndSaveGuts()
642 mListContainer.onHeightChanged(row, true /* needsAnimation */); in openGutsInternal()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationLogger.java83 private NotificationListContainer mListContainer; field in NotificationLogger
138 boolean isVisible = mListContainer.isInVisibleLocation(entry);
250 mListContainer = listContainer; in setUpWithContainer()
271 mListContainer.setChildLocationsChangedListener(null); in stopNotificationLogging()
281 mListContainer.setChildLocationsChangedListener(mNotificationLocationsChangedListener); in startNotificationLogging()
311 } else if (mListContainer.hasPulsingNotifications()) { in logNotificationClear()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/
DNotificationLoggerTest.java78 @Mock private NotificationListContainer mListContainer; field in NotificationLoggerTest
114 mLogger.setUpWithContainer(mListContainer); in setUp()
138 when(mListContainer.isInVisibleLocation(any())).thenReturn(true); in testOnChildLocationsChangedReportsVisibilityChanged()
160 when(mListContainer.isInVisibleLocation(any())).thenReturn(true); in testStoppingNotificationLoggingReportsCurrentNotifications()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationEntryManagerInflationTest.java114 @Mock private NotificationListContainer mListContainer; field in NotificationEntryManagerInflationTest
274 mRowBinder.setUpWithPresenter(mPresenter, mListContainer, mBindCallback); in setUp()