/frameworks/support/wear/src/main/java/androidx/wear/widget/ |
D | RoundedDrawable.java | 90 private final Rect mTmpBounds = new Rect(); field in RoundedDrawable 191 mTmpBounds.right = bounds.width(); in onBoundsChange() 192 mTmpBounds.bottom = bounds.height(); in onBoundsChange() 222 mTmpBounds.inset(padding, padding); in draw() 223 mDrawable.setBounds(mTmpBounds); in draw() 225 mTmpBounds.inset(-padding, -padding); in draw()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/ |
D | PipAccessibilityInteractionConnection.java | 50 private Rect mTmpBounds = new Rect(); field in PipAccessibilityInteractionConnection 99 mTmpBounds.offsetTo(newX, newY); in performAccessibilityAction() 100 mMotionHelper.movePip(mTmpBounds); in performAccessibilityAction()
|
D | PipTouchHandler.java | 137 private final Rect mTmpBounds = new Rect(); field in PipTouchHandler 643 mTmpBounds.set(mMotionHelper.getBounds()); 644 mTmpBounds.offsetTo((int) left, (int) top); 645 mMotionHelper.movePip(mTmpBounds); 655 ? curPos.x <= mMovementBounds.left + mTmpBounds.width()
|
/frameworks/support/graphics/drawable/static/src/main/java/androidx/vectordrawable/graphics/drawable/ |
D | VectorDrawableCompat.java | 242 private final Rect mTmpBounds = new Rect(); field in VectorDrawableCompat 289 copyBounds(mTmpBounds); in draw() 290 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) { in draw() 316 int scaledWidth = (int) (mTmpBounds.width() * canvasScaleX); in draw() 317 int scaledHeight = (int) (mTmpBounds.height() * canvasScaleY); in draw() 326 canvas.translate(mTmpBounds.left, mTmpBounds.top); in draw() 331 canvas.translate(mTmpBounds.width(), 0); in draw() 338 mTmpBounds.offsetTo(0, 0); in draw() 349 mVectorState.drawCachedBitmapWithRootAlpha(canvas, colorFilter, mTmpBounds); in draw()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | VectorDrawable.java | 342 private final Rect mTmpBounds = new Rect(); field in VectorDrawable 406 copyBounds(mTmpBounds); in draw() 407 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) { in draw() 418 colorFilterNativeInstance, mTmpBounds, needMirroring(), in draw()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | RecentsImpl.java | 251 Rect mTmpBounds = new Rect(); field in RecentsImpl 783 systemInsets.left, systemInsets.right, mTmpBounds); in updateDummyStackViewLayout() 785 stackLayout.initialize(displayRect, windowRect, mTmpBounds); in updateDummyStackViewLayout()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityRecord.java | 369 private final Rect mTmpBounds = new Rect(); field in ActivityRecord 2384 computeBounds(mTmpBounds); in updateOverrideConfiguration() 2386 if (mTmpBounds.equals(getOverrideBounds())) { in updateOverrideConfiguration() 2390 setBounds(mTmpBounds); in updateOverrideConfiguration()
|
D | ActivityStack.java | 348 private final SparseArray<Rect> mTmpBounds = new SparseArray<>(); field in ActivityStack 4769 mTmpBounds.clear(); in resize() 4789 mTmpBounds.put(task.taskId, task.getOverrideBounds()); in resize() 4795 mWindowContainerController.resize(bounds, mTmpBounds, mTmpInsetBounds); in resize()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplayContent.java | 331 private final Rect mTmpBounds = new Rect(); field in DisplayContent 2926 calculateBounds(mTmpBounds); in updateBounds() 2927 setBounds(mTmpBounds); in updateBounds()
|