Home
last modified time | relevance | path

Searched refs:childInGroup (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationInflater.java84 public void setIsChildInGroup(boolean childInGroup) { in setIsChildInGroup() argument
85 if (childInGroup != mIsChildInGroup) { in setIsChildInGroup()
86 mIsChildInGroup = childInGroup; in setIsChildInGroup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DExpandableNotificationRow.java505 boolean childInGroup = StatusBar.ENABLE_CHILD_NOTIFICATIONS && isChildInGroup;
506 mNotificationParent = childInGroup ? parent : null;
507 mPrivateLayout.setIsChildInGroup(childInGroup);
508 mNotificationInflater.setIsChildInGroup(childInGroup);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationChildrenContainer.java1163 public int getPositionInLinearLayout(View childInGroup) {
1172 if (child == childInGroup) {
DNotificationStackScrollLayout.java2733 ExpandableNotificationRow childInGroup = null; in getPositionInLinearLayout() local
2738 childInGroup = (ExpandableNotificationRow) requestedView; in getPositionInLinearLayout()
2739 requestedView = requestedRow = childInGroup.getNotificationParent(); in getPositionInLinearLayout()
2781 position += requestedRow.getPositionOfChild(childInGroup); in getPositionInLinearLayout()