/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationViewHierarchyManagerTest.java | 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() 160 entry0.getRow().addChildNotification(entry1.getRow()); in testNotificationsBecomingUnbundled() 161 entry0.getRow().addChildNotification(entry2.getRow()); in testNotificationsBecomingUnbundled() 164 mListContainer.addContainerView(entry0.getRow()); in testNotificationsBecomingUnbundled() 177 entry1.getRow(), entry0.getRow().getChildrenContainer()); in testNotificationsBecomingUnbundled() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationViewHierarchyManager.java | 171 ent.getRow().setSensitive(sensitive, deviceSensitive); in updateNotificationViews() 172 ent.getRow().setNeedsRedaction(needsRedaction); in updateNotificationViews() 176 mTmpChildOrderMap.get(summary.getRow()); in updateNotificationViews() 179 mTmpChildOrderMap.put(summary.getRow(), orderedChildren); in updateNotificationViews() 181 orderedChildren.add(ent.getRow()); in updateNotificationViews() 183 toShow.add(ent.getRow()); in updateNotificationViews() 393 entry.getRow().setOnAmbient(mShadeController.get().isDozing()); in updateRowStatesInternal() 411 entry.getRow().setVisibility(View.GONE); in updateRowStatesInternal() 413 boolean wasGone = entry.getRow().getVisibility() == View.GONE; in updateRowStatesInternal() 415 entry.getRow().setVisibility(View.VISIBLE); in updateRowStatesInternal() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | NotificationGroupAlertTransferHelperTest.java | 164 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testSuppressedSummaryHeadsUpTransferDoesNotAlertChildIfUninflated() 182 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testSuppressedSummaryHeadsUpTransferAlertsChildOnInflation() 188 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testSuppressedSummaryHeadsUpTransferAlertsChildOnInflation() 203 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testSuppressedSummaryHeadsUpTransferBackAbortsChildInflation() 218 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testSuppressedSummaryHeadsUpTransferBackAbortsChildInflation() 222 verify(childEntry.getRow(), times(1)).freeContentViewWhenSafe(mHeadsUpManager in testSuppressedSummaryHeadsUpTransferBackAbortsChildInflation() 233 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testCleanUpPendingAlertInfo() 251 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testUpdateGroupChangeDoesNotTransfer() 274 when(childEntry.getRow().isInflationFlagSet(mHeadsUpManager.getContentFlag())) in testUpdateChildToSummaryDoesNotTransfer()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NotificationGroupAlertTransferHelper.java | 214 entry.getRow().freeContentViewWhenSafe( 314 if (child.getRow().keepInParent() in handleSuppressedSummaryAlerted() 405 if (!entry.getRow().isInflationFlagSet(contentFlag)) { in alertNotificationWhenPossible() 407 entry.getRow().updateInflationFlag(contentFlag, true /* shouldInflate */); in alertNotificationWhenPossible() 408 entry.getRow().inflateViews(); in alertNotificationWhenPossible()
|
D | HeadsUpTouchHelper.java | 88 mPickedChild = topEntry.getRow(); in onInterceptTouchEvent()
|
D | StatusBarNotificationPresenter.java | 271 ExpandableNotificationRow row = entry.getRow(); in updateNotificationOnUiModeChanged() 464 mShadeController.goToLockedShade(clickedEntry.getRow()); in onExpandClicked()
|
D | HeadsUpAppearanceController.java | 390 ExpandableNotificationRow row = entry.getRow(); in updateHeader()
|
D | HeadsUpManagerPhone.java | 320 ExpandableNotificationRow topRow = topEntry.getRow(); in calculateTouchableRegion()
|
D | NotificationIconAreaController.java | 215 if (entry.getRow().getVisibility() == View.GONE) { in shouldShowNotificationIcon()
|
D | NotificationGroupManager.java | 95 listener.onGroupExpansionChanged(group.summary.getRow(), expanded); in setGroupExpanded()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationRoundnessManager.java | 62 updateView(headsUp.getRow(), false /* animate */); in onHeadsUpPinned() 67 updateView(headsUp.getRow(), true /* animate */); in onHeadsUpUnPinned() 77 ActivatableNotificationView row = entry.getRow(); in onAmbientStateChanged()
|
D | NotificationStackScrollLayout.java | 718 NotificationStackScrollLayout.this.lockScrollTo(entry.getRow()); in createDelegate() 1059 ExpandableNotificationRow row = entry.getRow(); 1405 ExpandableNotificationRow row = topEntry.getRow(); 1410 row = groupSummary.getRow(); 1584 && mHeadsUpManager.getTopEntry().getRow() != row 1724 ExpandableNotificationRow child = entry.getRow(); 2880 View child = entry.getRow(); 3009 if (groupSummary != null && groupSummary.getRow() != row) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationData.java | 111 boolean aHeadsUp = a.getRow().isHeadsUp(); 112 boolean bHeadsUp = b.getRow().isHeadsUp(); 125 } else if (a.getRow().showingAmbientPulsing() != b.getRow().showingAmbientPulsing()) { 126 return a.getRow().showingAmbientPulsing() ? -1 : 1;
|
D | NotificationRowBinderImpl.java | 132 updateNotification(entry, pmUser, sbn, entry.getRow()); in inflateViews() 202 updateNotification(entry, pmUser, entry.notification, entry.getRow()); in onNotificationRankingUpdated() 210 entry.getRow().onNotificationRankingUpdated(); in onNotificationRankingUpdated()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | VisualStabilityManager.java | 76 entry.ambient != entry.getRow().isLowPriority(); in VisualStabilityManager() 197 mAllowedReorderViews.add(entry.getRow()); in onHeadsUpStateChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationLogger.java | 169 if (entry == null || entry.getRow() == null || entry.getRow().getViewState() == null) { in getNotificationLocation() 172 return convertNotificationLocation(entry.getRow().getViewState().location); in getNotificationLocation()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | NotificationEntryManagerTest.java | 284 verify(mRemoteInputManager).bindRow(entry.getRow()); in testAddNotification() 291 assertNotNull(entry.getRow()); in testAddNotification() 316 assertNotNull(mEntry.getRow()); in testUpdateNotification() 345 assertNotNull(mEntry.getRow()); in testUpdateNotification_prePostEntryOrder()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | RemoteInputView.java | 258 if (mEntry.getRow().isChangingPosition()) { in onAttachedToWindow() 268 if (mEntry.getRow().isChangingPosition() || isTemporarilyDetached()) { in onDetachedFromWindow() 529 if (mRemoteInputView != null && mRemoteInputView.mEntry.getRow().isChangingPosition() in defocusIfNeeded()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternView.java | 193 public int getRow() { in getRow() method in LockPatternView.Cell 435 mPatternDrawLookup[cell.getRow()][cell.getColumn()] = true; in setPattern() 458 mInProgressY = getCenterYForRow(first.getRow()); in setDisplayMode() 764 mPatternDrawLookup[newCell.getRow()][newCell.getColumn()] = true; in addCellToPattern() 1113 drawLookup[cell.getRow()][cell.getColumn()] = true; in onDraw()
|
/frameworks/base/media/java/android/media/ |
D | ClosedCaptionRenderer.java | 386 getMemory().moveBaselineTo(pac.getRow(), mRollUpSize); in handlePACCode() 612 int getRow() { in getRow() method in Cea608CCParser.PAC 848 moveCursorTo(pac.getRow(), pac.getCol()); in writePAC() 850 moveCursorTo(pac.getRow(), 1); in writePAC()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/ |
D | BubbleView.java | 133 return (mEntry != null) ? mEntry.getRow() : null; in getRowView()
|
D | BubbleExpandedView.java | 340 mNotifRow = mEntry.getRow(); in updateExpandedView()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ChooserActivity.java | 3094 setViewBounds(dsvh.getRow(0), LayoutParams.MATCH_PARENT, dsvh.getMinRowHeight()); 3095 setViewBounds(dsvh.getRow(1), LayoutParams.MATCH_PARENT, dsvh.getMinRowHeight()); 3278 abstract ViewGroup getRow(int rowNumber); 3326 public ViewGroup getRow(int rowNumber) { 3380 public ViewGroup getRow(int rowNumber) { 3386 getRow(0).measure(spec, spec); 3387 getRow(1).measure(spec, spec); 3389 mDirectShareMinHeight = getRow(0).getMeasuredHeight();
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationRoundnessManagerTest.java | 148 when(entry.getRow()).thenReturn(row); in testRoundnessPulsing()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationGutsManager.java | 131 bindGuts(entry.getRow()); in onDensityOrFontScaleChanged()
|