Searched refs:NodeController (Results 1 – 15 of 15) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
D | NodeController.kt | 32 interface NodeController { interface 44 fun addChildAt(child: NodeController, index: Int) { in getChildCount() 48 fun moveChildTo(child: NodeController, index: Int) { in moveChildTo() 52 fun removeChild(child: NodeController, isTransfer: Boolean) { in removeChild() 62 val controller: NodeController 68 override val controller: NodeController
|
D | RootNodeController.kt | 30 ) : NodeController { 41 override fun addChildAt(child: NodeController, index: Int) { in addChildAt() 45 override fun moveChildTo(child: NodeController, index: Int) { in moveChildTo() 49 override fun removeChild(child: NodeController, isTransfer: Boolean) { in removeChild()
|
D | ShadeViewDiffer.kt | 38 rootController: NodeController, in <lambda>() 72 specMap: Map<NodeController, NodeSpec> in <lambda>() 124 specMap: Map<NodeController, NodeSpec> in <lambda>() 172 private fun treeToMap(tree: NodeSpec): Map<NodeController, NodeSpec> { in <lambda>() 173 val map = mutableMapOf<NodeController, NodeSpec>() in <lambda>() 185 private fun registerNodes(node: NodeSpec, map: MutableMap<NodeController, NodeSpec>) { in <lambda>() 202 val controller: NodeController
|
D | SectionHeaderController.kt | 46 ) : NodeController, SectionHeaderController {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | RankingCoordinator.java | 29 import com.android.systemui.statusbar.notification.collection.render.NodeController; 46 private final NodeController mSilentHeaderController; 47 private final NodeController mAlertingHeaderController; 53 @AlertingHeader NodeController alertingHeaderController, in RankingCoordinator() 54 @SilentHeader NodeController silentHeaderController) { in RankingCoordinator() 85 public NodeController getHeaderNodeController() { 98 public NodeController getHeaderNodeController() {
|
D | HeadsUpCoordinator.java | 33 import com.android.systemui.statusbar.notification.collection.render.NodeController; 66 private final NodeController mIncomingHeaderController; 80 @IncomingHeader NodeController incomingHeaderController) { in HeadsUpCoordinator() 207 public NodeController getHeaderNodeController() {
|
D | ConversationCoordinator.kt | 25 import com.android.systemui.statusbar.notification.collection.render.NodeController 39 @PeopleHeader peopleHeaderController: NodeController
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/ |
D | ShadeViewDifferTest.java | 210 final NodeController parent = spec.getController(); in checkMatchesSpec() 230 private static class FakeController implements NodeController { 263 public void addChildAt(@NonNull NodeController child, int index) { in addChildAt() 268 public void moveChildTo(@NonNull NodeController child, int index) { in moveChildTo() 274 public void removeChild(@NonNull NodeController child, boolean isTransfer) { in removeChild() 280 private final NodeController mController; 283 SpecBuilder(NodeController controller, SpecBuilder... children) { in SpecBuilder() 301 private static SpecBuilder node(NodeController controller, SpecBuilder... children) { in node()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/ |
D | NotifSection.kt | 20 import com.android.systemui.statusbar.notification.collection.render.NodeController 29 val headerController: NodeController?
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/pluggable/ |
D | NotifSectioner.java | 23 import com.android.systemui.statusbar.notification.collection.render.NodeController; 46 public @Nullable NodeController getHeaderNodeController() { in getHeaderNodeController()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRowController.java | 37 import com.android.systemui.statusbar.notification.collection.render.NodeController; 59 public class ExpandableNotificationRowController implements NodeController { 227 public void addChildAt(NodeController child, int index) { in addChildAt() 235 public void moveChildTo(NodeController child, int index) { in moveChildTo() 242 public void removeChild(NodeController child, boolean isTransfer) { in removeChild()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/ |
D | NotificationSectionHeadersModule.kt | 23 import com.android.systemui.statusbar.notification.collection.render.NodeController 135 val nodeController: NodeController in providesIncomingHeaderSubcomponent() 149 @Binds abstract fun bindsNodeController(impl: SectionHeaderNodeControllerImpl): NodeController
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | RankingCoordinatorTest.java | 41 import com.android.systemui.statusbar.notification.collection.render.NodeController; 58 @Mock private NodeController mAlertingHeaderController; 59 @Mock private NodeController mSilentHeaderController;
|
D | ConversationCoordinatorTest.kt | 29 import com.android.systemui.statusbar.notification.collection.render.NodeController 54 @Mock private lateinit var headerController: NodeController
|
D | HeadsUpCoordinatorTest.java | 42 import com.android.systemui.statusbar.notification.collection.render.NodeController; 77 @Mock private NodeController mHeaderController;
|