Home
last modified time | relevance | path

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

/frameworks/support/design/src/android/support/design/widget/
DCoordinatorLayout.java1060 final Rect childRect = acquireTempRect(); in layoutChildWithAnchor() local
1063 getDesiredAnchoredChildRect(child, layoutDirection, anchorRect, childRect); in layoutChildWithAnchor()
1064 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); in layoutChildWithAnchor()
1067 releaseTempRect(childRect); in layoutChildWithAnchor()
1594 final Rect childRect = acquireTempRect(); in offsetChildToAnchor() local
1598 getChildRect(child, false, childRect); in offsetChildToAnchor()
1604 boolean changed = desiredChildRect.left != childRect.left || in offsetChildToAnchor()
1605 desiredChildRect.top != childRect.top; in offsetChildToAnchor()
1608 final int dx = desiredChildRect.left - childRect.left; in offsetChildToAnchor()
1609 final int dy = desiredChildRect.top - childRect.top; in offsetChildToAnchor()
[all …]