Home
last modified time | relevance | path

Searched refs:childEntry (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationGroupAlertTransferHelperTest.java112 NotificationEntry childEntry = mGroupTestHelper.createChildNotification(); in testSuppressedSummaryHeadsUpTransfersToChild() local
116 when(mBindStage.getStageParams(eq(childEntry))).thenReturn(params); in testSuppressedSummaryHeadsUpTransfersToChild()
120 mGroupManager.onEntryAdded(childEntry); in testSuppressedSummaryHeadsUpTransfersToChild()
124 assertTrue(mHeadsUpManager.isAlerting(childEntry.getKey())); in testSuppressedSummaryHeadsUpTransfersToChild()
131 NotificationEntry childEntry = in testSuppressedSummaryHeadsUpTransfersToChildButBackAgain() local
138 mGroupManager.onEntryAdded(childEntry); in testSuppressedSummaryHeadsUpTransfersToChildButBackAgain()
148 assertFalse(mHeadsUpManager.isAlerting(childEntry.getKey())); in testSuppressedSummaryHeadsUpTransfersToChildButBackAgain()
155 NotificationEntry childEntry = in testSuppressedSummaryHeadsUpDoesntTransferBackOnDozingChanged() local
162 mGroupManager.onEntryAdded(childEntry); in testSuppressedSummaryHeadsUpDoesntTransferBackOnDozingChanged()
180 NotificationEntry childEntry = mGroupTestHelper.createChildNotification(); in testSuppressedSummaryHeadsUpTransferDoesNotAlertChildIfUninflated() local
[all …]
DNotificationGroupManagerTest.java75 NotificationEntry childEntry = mGroupTestHelper.createChildNotification(); in testIsOnlyChildInGroup() local
79 mGroupManager.onEntryAdded(childEntry); in testIsOnlyChildInGroup()
81 assertTrue(mGroupManager.isOnlyChildInGroup(childEntry.getSbn())); in testIsOnlyChildInGroup()
86 NotificationEntry childEntry = mGroupTestHelper.createChildNotification(); in testIsChildInGroupWithSummary() local
90 mGroupManager.onEntryAdded(childEntry); in testIsChildInGroupWithSummary()
93 assertTrue(mGroupManager.isChildInGroupWithSummary(childEntry.getSbn())); in testIsChildInGroupWithSummary()
98 NotificationEntry childEntry = mGroupTestHelper.createChildNotification(); in testIsSummaryOfGroupWithChildren() local
102 mGroupManager.onEntryAdded(childEntry); in testIsSummaryOfGroupWithChildren()
106 assertEquals(summaryEntry, mGroupManager.getGroupSummary(childEntry.getSbn())); in testIsSummaryOfGroupWithChildren()
111 NotificationEntry childEntry = mGroupTestHelper.createChildNotification(); in testRemoveChildFromGroupWithSummary() local
[all …]
/frameworks/base/core/tests/coretests/src/android/content/
DRestrictionsManagerTest.java55 for (RestrictionEntry childEntry : entry.getRestrictions()) { in testGetManifestRestrictions()
56 if ("bundle_array_bundle_key".equals(childEntry.getKey())) { in testGetManifestRestrictions()
57 assertNotNull(childEntry.getRestrictions()); in testGetManifestRestrictions()
59 1, childEntry.getRestrictions().length); in testGetManifestRestrictions()
60 verifiedKeys.remove(childEntry.getKey()); in testGetManifestRestrictions()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DDynamicChildBindController.java84 NotificationEntry childEntry = children.get(j); in updateContentViews() local
86 if (hasContent(childEntry)) { in updateContentViews()
87 freeContent(childEntry); in updateContentViews()
90 if (!hasContent(childEntry)) { in updateContentViews()
91 bindContent(childEntry); in updateContentViews()
DNotificationEntryManager.java537 NotificationEntry childEntry = childEntries.get(i); in handleGroupSummaryRemoved() local
541 mRemoteInputManagerLazy.get().shouldKeepForRemoteInputHistory(childEntry) in handleGroupSummaryRemoved()
542 || mRemoteInputManagerLazy.get().shouldKeepForSmartReplyHistory(childEntry); in handleGroupSummaryRemoved()
548 childEntry.setKeepInParent(true); in handleGroupSummaryRemoved()
551 childEntry.removeRow(); in handleGroupSummaryRemoved()
/frameworks/base/core/java/android/content/
DRestrictionsManager.java659 RestrictionEntry childEntry = loadRestrictionElement(appContext, xml); in loadRestriction() local
660 if (childEntry == null) { in loadRestriction()
663 restrictionEntries.add(childEntry); in loadRestriction()
665 && childEntry.getType() != RestrictionEntry.TYPE_BUNDLE) { in loadRestriction()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotifViewManager.kt155 for ((idx, childEntry) in entry.children.withIndex()) { in <lambda>() constant
156 val childListItem = rowRegistry.requireView(childEntry) in <lambda>()