Searched refs:privateLayout (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationRowContentBinderImpl.kt | 258 row.privateLayout.performWhenContentInactive( in <lambda>() 261 row.privateLayout.setContractedChild(null) in <lambda>() 265 row.privateLayout.performWhenContentInactive( in <lambda>() 268 row.privateLayout.setExpandedChild(null) in <lambda>() 272 row.privateLayout.performWhenContentInactive( in <lambda>() 275 row.privateLayout.setHeadsUpChild(null) in <lambda>() 277 row.privateLayout.setHeadsUpInflatedSmartReplies(null) in <lambda>() 288 row.privateLayout.performWhenContentInactive( in <lambda>() 291 row.privateLayout.setSingleLineView(null) in <lambda>() 311 row.privateLayout.removeContentInactiveRunnable( in <lambda>() [all …]
|
D | NotificationContentInflater.java | 473 NotificationContentView privateLayout = row.getPrivateLayout(); in apply() local 497 privateLayout, privateLayout.getContractedChild(), in apply() 498 privateLayout.getVisibleWrapper( in apply() 525 callback, privateLayout, privateLayout.getExpandedChild(), in apply() 526 privateLayout.getVisibleWrapper(VISIBLE_TYPE_EXPANDED), runningInflations, in apply() 553 callback, privateLayout, privateLayout.getHeadsUpChild(), in apply() 554 privateLayout.getVisibleWrapper(VISIBLE_TYPE_HEADSUP), runningInflations, in apply() 874 NotificationContentView privateLayout = row.getPrivateLayout(); 881 privateLayout.setContractedChild(result.inflatedContentView); 895 privateLayout.setExpandedChild(result.inflatedExpandedView); [all …]
|
D | ExpandableNotificationRow.java | 3728 protected void setPrivateLayout(NotificationContentView privateLayout) { 3729 mPrivateLayout = privateLayout;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationMemoryViewWalker.kt | 67 getViewUsage(ViewType.PRIVATE_EXPANDED_VIEW, row.privateLayout?.expandedChild), in <lambda>() 70 row.privateLayout?.contractedChild in <lambda>() 72 getViewUsage(ViewType.PRIVATE_HEADS_UP_VIEW, row.privateLayout?.headsUpChild), in <lambda>() 104 row.privateLayout?.expandedChild, in <lambda>() 105 row.privateLayout?.contractedChild, in <lambda>() 106 row.privateLayout?.headsUpChild, in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationRowContentBinderImplTest.kt | 177 Assert.assertNotNull(mRow.privateLayout.headsUpChild) in <lambda>() 183 mRow.privateLayout.removeAllViews() in <lambda>() 192 Assert.assertTrue(mRow.privateLayout.childCount == 0) in <lambda>() 256 parentLayout = mRow.privateLayout, in <lambda>() 313 mRow.privateLayout.setContractedChild(view) in <lambda>() 326 mRow.privateLayout.contractedChild in <lambda>() 351 mRow.privateLayout.setContractedChild(view) in <lambda>() 364 mRow.privateLayout.contractedChild in <lambda>() 469 mRow.privateLayout.removeAllViews() in <lambda>() 481 Assert.assertEquals(0, mRow.privateLayout.childCount.toLong()) in <lambda>()
|
D | ExpandableNotificationRowTest.java | 468 NotificationContentView privateLayout = mock(NotificationContentView.class); in testFeedback_header() local 469 group.setPrivateLayout(privateLayout); in testFeedback_header() 480 verify(privateLayout, times(1)).setFeedbackIcon(icon); in testFeedback_header() 669 NotificationContentView privateLayout = mock(NotificationContentView.class); in testSetContentAnimationRunning_Run() local 670 row.setPrivateLayout(privateLayout); in testSetContentAnimationRunning_Run() 674 verify(privateLayout, times(1)).setContentAnimationRunning(true); in testSetContentAnimationRunning_Run() 683 NotificationContentView privateLayout = mock(NotificationContentView.class); in testSetContentAnimationRunning_Stop() local 684 row.setPrivateLayout(privateLayout); in testSetContentAnimationRunning_Stop() 688 verify(privateLayout, times(1)).setContentAnimationRunning(false); in testSetContentAnimationRunning_Stop()
|
D | ExpandableNotificationRowControllerTest.kt | 263 whenever(view.privateLayout).thenReturn(childView) in settingsListener_validUserId() 283 whenever(view.privateLayout).thenReturn(childView) in settingsListener_userAll()
|