Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DDimLayerController.java45 private Rect mTmpBounds = new Rect(); field in DimLayerController
75 dimLayerUser.getDimBounds(mTmpBounds); in updateDimLayer()
76 newDimLayer.setBounds(mTmpBounds); in updateDimLayer()
86 dimLayerUser.getDimBounds(mTmpBounds); in updateDimLayer()
87 newDimLayer.setBounds(mTmpBounds); in updateDimLayer()
154 mDisplayContent.getLogicalDisplayRect(mTmpBounds); in startDimmingIfNeeded()
156 dimLayerUser.getDimBounds(mTmpBounds); in startDimmingIfNeeded()
158 state.dimLayer.setBounds(mTmpBounds); in startDimmingIfNeeded()
183 dimLayerUser.getDimBounds(mTmpBounds); in stopDimmingIfNeeded()
184 state.dimLayer.setBounds(mTmpBounds); in stopDimmingIfNeeded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
DPipAccessibilityInteractionConnection.java50 private Rect mTmpBounds = new Rect(); field in PipAccessibilityInteractionConnection
99 mTmpBounds.offsetTo(newX, newY); in performAccessibilityAction()
100 mMotionHelper.movePip(mTmpBounds); in performAccessibilityAction()
DPipTouchHandler.java135 private final Rect mTmpBounds = new Rect(); field in PipTouchHandler
581 mTmpBounds.set(mMotionHelper.getBounds());
583 float left = mTmpBounds.left + lastDelta.x;
584 float top = mTmpBounds.top + lastDelta.y;
594 mTmpBounds.offsetTo((int) left, (int) top);
595 mMotionHelper.movePip(mTmpBounds);
605 ? curPos.x <= mMovementBounds.left + mTmpBounds.width()
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
DVectorDrawableCompat.java236 private final Rect mTmpBounds = new Rect(); field in VectorDrawableCompat
283 copyBounds(mTmpBounds); in draw()
284 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) { in draw()
310 int scaledWidth = (int) (mTmpBounds.width() * canvasScaleX); in draw()
311 int scaledHeight = (int) (mTmpBounds.height() * canvasScaleY); in draw()
320 canvas.translate(mTmpBounds.left, mTmpBounds.top); in draw()
325 canvas.translate(mTmpBounds.width(), 0); in draw()
332 mTmpBounds.offsetTo(0, 0); in draw()
343 mVectorState.drawCachedBitmapWithRootAlpha(canvas, colorFilter, mTmpBounds); in draw()
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java263 private final Rect mTmpBounds = new Rect(); field in VectorDrawable
327 copyBounds(mTmpBounds); in draw()
328 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) { in draw()
339 colorFilterNativeInstance, mTmpBounds, needMirroring(), in draw()
/frameworks/base/services/core/java/com/android/server/am/
DActivityRecord.java352 private final Rect mTmpBounds = new Rect(); field in ActivityRecord
2265 computeBounds(mTmpBounds); in updateOverrideConfiguration()
2266 if (mTmpBounds.equals(mBounds)) { in updateOverrideConfiguration()
2290 mBounds.set(mTmpBounds); in updateOverrideConfiguration()
DActivityStack.java350 private final SparseArray<Rect> mTmpBounds = new SparseArray<>(); field in ActivityStack
4768 mTmpBounds.clear(); in resize()
4788 mTmpBounds.put(task.taskId, task.mBounds); in resize()
4794 mFullscreen = mWindowContainerController.resize(bounds, mTmpConfigs, mTmpBounds, in resize()