Searched refs:mTmpFrame (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/core/java/android/view/ |
H A D | InsetsSource.java | 103 private final Rect mTmpFrame = new Rect(); field in InsetsSource 240 return Insets.of(0, 0, 0, mTmpFrame.height()); in calculateInsets() 244 if (mTmpFrame.width() == relativeFrame.width()) { in calculateInsets() 245 if (mTmpFrame.top == relativeFrame.top) { in calculateInsets() 246 return Insets.of(0, mTmpFrame.height(), 0, 0); in calculateInsets() 248 return Insets.of(0, 0, 0, mTmpFrame.height()); in calculateInsets() 253 if (mTmpFrame.top == 0) { in calculateInsets() 254 return Insets.of(0, mTmpFrame.height(), 0, 0); in calculateInsets() 259 if (mTmpFrame.left == relativeFrame.left) { in calculateInsets() 260 return Insets.of(mTmpFrame.width(), 0, 0, 0); in calculateInsets() [all …]
|
H A D | InsetsAnimationControlImpl.java | 85 private final Rect mTmpFrame = new Rect(); field in InsetsAnimationControlImpl 473 mTmpFrame.set(source.getFrame()); in updateLeashesForSide() 475 addTranslationToMatrix(side, offset, mTmpMatrix, mTmpFrame); in updateLeashesForSide() 484 .setFrame(mTmpFrame)); in updateLeashesForSide()
|