Searched refs:mTmpFrame (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | InsetsSource.java | 46 private final Rect mTmpFrame = new Rect(); field in InsetsSource 130 if (!getIntersection(frame, relativeFrame, mTmpFrame)) { in calculateInsets() 137 return Insets.of(0, 0, 0, mTmpFrame.height()); in calculateInsets() 141 if (mTmpFrame.width() == relativeFrame.width()) { in calculateInsets() 142 if (mTmpFrame.top == relativeFrame.top) { in calculateInsets() 143 return Insets.of(0, mTmpFrame.height(), 0, 0); in calculateInsets() 144 } else if (mTmpFrame.bottom == relativeFrame.bottom) { in calculateInsets() 145 return Insets.of(0, 0, 0, mTmpFrame.height()); in calculateInsets() 150 if (mTmpFrame.top == 0) { in calculateInsets() 151 return Insets.of(0, mTmpFrame.height(), 0, 0); in calculateInsets() [all …]
|
D | InsetsAnimationControlImpl.java | 60 private final Rect mTmpFrame = new Rect(); field in InsetsAnimationControlImpl 342 mTmpFrame.set(source.getFrame()); in updateLeashesForSide() 343 addTranslationToMatrix(side, offset, mTmpMatrix, mTmpFrame); in updateLeashesForSide() 350 state.getSource(source.getType()).setFrame(mTmpFrame); in updateLeashesForSide()
|
D | ViewRootImpl.java | 556 final Rect mTmpFrame = new Rect(); field in ViewRootImpl 1029 getHostVisibility(), mDisplay.getDisplayId(), userId, mTmpFrame, 1033 setFrame(mTmpFrame); 5036 mTmpFrame.left = l; in handleMessage() 5037 mTmpFrame.right = l + w; in handleMessage() 5038 mTmpFrame.top = t; in handleMessage() 5039 mTmpFrame.bottom = t + h; in handleMessage() 5040 setFrame(mTmpFrame); in handleMessage() 7447 mTmpFrame, mTmpRect, mTmpRect, mTmpRect, mPendingBackDropFrame, in relayoutWindow() 7475 mTranslator.translateRectInScreenToAppWinFrame(mTmpFrame); in relayoutWindow() [all …]
|