Home
last modified time | relevance | path

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

/frameworks/support/design/src/android/support/design/widget/
DCoordinatorLayout.java166 private final DirectedAcyclicGraph<View> mChildDag = new DirectedAcyclicGraph<>(); field in CoordinatorLayout
649 mChildDag.clear(); in prepareChildren()
657 mChildDag.addNode(view); in prepareChildren()
666 if (!mChildDag.contains(other)) { in prepareChildren()
668 mChildDag.addNode(other); in prepareChildren()
671 mChildDag.addEdge(other, view); in prepareChildren()
677 mDependencySortedChildren.addAll(mChildDag.getSortedList()); in prepareChildren()
1468 final List<View> dependents = mChildDag.getIncomingEdges(view); in dispatchDependentViewsChanged()
1492 final List<View> dependencies = mChildDag.getOutgoingEdges(child); in getDependencies()
1510 final List<View> edges = mChildDag.getIncomingEdges(child); in getDependents()
[all …]