Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/
DAnimatorUtils.java244 final Rect targetInsets = new Rect(); in getBoundsAnimator() local
245 target.getBackground().getPadding(targetInsets); in getBoundsAnimator()
252 final int startLeft = from.getLeft() - fromInsets.left + targetInsets.left; in getBoundsAnimator()
253 final int startTop = from.getTop() - fromInsets.top + targetInsets.top; in getBoundsAnimator()
254 final int startRight = from.getRight() - fromInsets.right + targetInsets.right; in getBoundsAnimator()
255 final int startBottom = from.getBottom() - fromInsets.bottom + targetInsets.bottom; in getBoundsAnimator()
258 final int endLeft = to.getLeft() - toInsets.left + targetInsets.left; in getBoundsAnimator()
259 final int endTop = to.getTop() - toInsets.top + targetInsets.top; in getBoundsAnimator()
260 final int endRight = to.getRight() - toInsets.right + targetInsets.right; in getBoundsAnimator()
261 final int endBottom = to.getBottom() - toInsets.bottom + targetInsets.bottom; in getBoundsAnimator()