Searched refs:mShownInsets (Results 1 – 1 of 1) sorted by relevance
94 private final Insets mShownInsets; field in InsetsAnimationControlImpl138 mShownInsets = calculateInsets(mInitialInsetsState, frame, controls, true /* shown */, in InsetsAnimationControlImpl()140 mHasZeroInsetsIme = mShownInsets.bottom == 0 && controlsType(WindowInsets.Type.ime()); in InsetsAnimationControlImpl()152 mShownInsets = calculateInsets(null, controls, true /* shown */); in InsetsAnimationControlImpl()153 mHasZeroInsetsIme = mShownInsets.bottom == 0 && controlsType(WindowInsets.Type.ime()); in InsetsAnimationControlImpl()169 "Shown:" + mShownInsets, "Hidden:" + mHiddenInsets); in InsetsAnimationControlImpl()172 new Bounds(mHiddenInsets, mShownInsets)); in InsetsAnimationControlImpl()176 return 100 * currentInsets.left >= 5 * (mShownInsets.left - mHiddenInsets.left) in calculatePerceptible()177 && 100 * currentInsets.top >= 5 * (mShownInsets.top - mHiddenInsets.top) in calculatePerceptible()178 && 100 * currentInsets.right >= 5 * (mShownInsets.right - mHiddenInsets.right) in calculatePerceptible()[all …]