Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DInsetsAnimationControlImpl.java73 private Insets mPendingInsets; field in InsetsAnimationControlImpl
137 mPendingInsets = sanitize(insets); in changeInsets()
149 final Insets offset = Insets.subtract(mShownInsets, mPendingInsets); in applyChangeInsets()
152 updateLeashesForSide(INSET_SIDE_LEFT, offset.left, mPendingInsets.left, params, state); in applyChangeInsets()
155 updateLeashesForSide(INSET_SIDE_TOP, offset.top, mPendingInsets.top, params, state); in applyChangeInsets()
158 updateLeashesForSide(INSET_SIDE_RIGHT, offset.right, mPendingInsets.right, params, in applyChangeInsets()
162 updateLeashesForSide(INSET_SIDE_BOTTOM, offset.bottom, mPendingInsets.bottom, params, in applyChangeInsets()
167 mCurrentInsets = mPendingInsets; in applyChangeInsets()