Home
last modified time | relevance | path

Searched refs:isChildInGroup (Results 1 – 24 of 24) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustment.kt39 val isChildInGroup: Boolean, constant in com.android.systemui.statusbar.notification.collection.inflation.NotifUiAdjustment
56 !oldAdjustment.isChildInGroup && newAdjustment.isChildInGroup -> true in needReinflate()
DNotifInflater.kt62 val isChildInGroup: Boolean = false, constant in com.android.systemui.statusbar.notification.collection.inflation.NotifInflater.Params
DNotifUiAdjustmentProvider.kt147 isChildInGroup = entry.hasEverBeenGroupChild(),
DNotificationRowBinderImpl.java266 if (inflaterParams.isChildInGroup()) { in inflateContentViews()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/render/
DGroupMembershipManagerTest.kt37 assertThat(underTest.isChildInGroup(topLevelEntry)).isFalse() in isChildInGroup_topLevel()
43 assertThat(underTest.isChildInGroup(noParentEntry)).isFalse() in isChildInGroup_noParent()
56 assertThat(underTest.isChildInGroup(summary)).isFalse() in isChildInGroup_summary()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustmentProviderTest.kt162 assertThat(oldAdjustment.isChildInGroup).isFalse() in becomeChildInGroup_asyncHybirdFlagEnabled_needReInflation()
167 assertThat(newAdjustment.isChildInGroup).isTrue() in becomeChildInGroup_asyncHybirdFlagEnabled_needReInflation()
180 assertThat(oldAdjustment.isChildInGroup).isFalse() in becomeChildInGroup_asyncHybirdFlagDisabled_noNeedForReInflation()
185 assertThat(newAdjustment.isChildInGroup).isTrue() in becomeChildInGroup_asyncHybirdFlagDisabled_noNeedForReInflation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationHeaderViewWrapper.java186 mTransformLowPriorityTitle = !row.isChildInGroup() && !row.isSummaryWithChildren(); in onContentUpdated()
345 public void setIsChildInGroup(boolean isChildInGroup) { in setIsChildInGroup() argument
346 super.setIsChildInGroup(isChildInGroup); in setIsChildInGroup()
347 mTransformLowPriorityTitle = !isChildInGroup; in setIsChildInGroup()
DNotificationViewWrapper.java359 public void setIsChildInGroup(boolean isChildInGroup) { in setIsChildInGroup() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
DGroupMembershipManager.java59 boolean isChildInGroup(@NonNull NotificationEntry entry); in isChildInGroup() method
DGroupMembershipManagerImpl.java62 public boolean isChildInGroup(@NonNull NotificationEntry entry) { in isChildInGroup() method in GroupMembershipManagerImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java420 if (isChildInGroup()) { in isGroupExpansionChanging()
959 public boolean isChildInGroup() {
971 public void setIsChildInGroup(boolean isChildInGroup, ExpandableNotificationRow parent) {
972 if (mExpandAnimationRunning && !isChildInGroup && mNotificationParent != null) {
978 mNotificationParent = isChildInGroup ? parent : null;
979 mPrivateLayout.setIsChildInGroup(isChildInGroup);
1004 || !isChildInGroup() || isGroupExpanded()) {
1282 boolean normalChild = !isChildInGroup() || isGroupExpanded();
1488 if (isChildInGroup()) {
1522 mWasChildInGroupWhenRemoved = isChildInGroup();
[all …]
DExpandableOutlineView.java333 if (isChildInGroup()) { in needsOutline()
DExpandableView.java651 public boolean isChildInGroup() { in isChildInGroup() method in ExpandableView
DActivatableNotificationView.java329 mBackgroundNormal.setBottomAmountClips(!isChildInGroup()); in updateBackgroundClipping()
DNotificationContentView.java1270 public void setIsChildInGroup(boolean isChildInGroup) { in setIsChildInGroup() argument
1271 mIsChildInGroup = isChildInGroup; in setIsChildInGroup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationClicker.java83 } else if (row.isChildInGroup() && isMenuVisible(row.getNotificationParent())) { in onClick()
DNotificationTransitionAnimatorController.kt123 if (notification.isChildInGroup) { in createAnimatorState()
DTransformState.java58 return !row.isChildInGroup();
69 } else if (row.isChildInGroup()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarRemoteInputCallback.java195 if (row.isChildInGroup() && !row.areChildrenExpanded()) { in onMakeExpandedVisibleForRemoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DPreparationCoordinator.java375 /* isChildInGroup = */ adjustment.isChildInGroup(),
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java755 return row != null && row.isChildInGroup(); in rowIsChildInGroup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java1692 if (row.isChildInGroup()) {
2835 private boolean isChildInGroup(View child) { in isChildInGroup() method
2837 && mGroupMembershipManager.isChildInGroup( in isChildInGroup()
2967 if (isChildInGroup(requestedView)) { in getPositionInLinearLayout()
3216 if (row.isChildInGroup()) { in generateHeadsUpAnimationEvents()
4251 if (row.isChildInGroup()) { in updateScrollPositionOnExpandInBottom()
DStackStateAnimator.java422 && !nextRow.isChildInGroup()) { in processAnimationEvents()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowTest.java584 Assert.assertTrue(child.isChildInGroup()); in testAddChildNotification()