Searched defs:mTmpBounds (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipAccessibilityInteractionConnection.java50 private Rect mTmpBounds = new Rect(); field in class:PipAccessibilityInteractionConnection
99 mTmpBounds.offsetTo(newX, newY);
100 mMotionHelper.movePip(mTmpBounds);
H A DPipTouchHandler.java135 private final Rect mTmpBounds = new Rect(); field in class: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/base/services/core/java/com/android/server/wm/
H A DDimLayerController.java45 private Rect mTmpBounds = new Rect(); field in class:DimLayerController
75 dimLayerUser.getDimBounds(mTmpBounds);
76 newDimLayer.setBounds(mTmpBounds);
86 dimLayerUser.getDimBounds(mTmpBounds);
87 newDimLayer.setBounds(mTmpBounds);
154 mDisplayContent.getLogicalDisplayRect(mTmpBounds);
156 dimLayerUser.getDimBounds(mTmpBounds);
158 state.dimLayer.setBounds(mTmpBounds);
183 dimLayerUser.getDimBounds(mTmpBounds);
184 state.dimLayer.setBounds(mTmpBounds);
[all...]
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java236 private final Rect mTmpBounds = new Rect(); field in class:VectorDrawableCompat
283 copyBounds(mTmpBounds);
284 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) {
310 int scaledWidth = (int) (mTmpBounds.width() * canvasScaleX);
311 int scaledHeight = (int) (mTmpBounds.height() * canvasScaleY);
320 canvas.translate(mTmpBounds.left, mTmpBounds.top);
325 canvas.translate(mTmpBounds.width(), 0);
332 mTmpBounds
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java263 private final Rect mTmpBounds = new Rect(); field in class:VectorDrawable
327 copyBounds(mTmpBounds);
328 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) {
339 colorFilterNativeInstance, mTmpBounds, needMirroring(),
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java352 private final Rect mTmpBounds = new Rect(); field in class:ActivityRecord
2265 computeBounds(mTmpBounds);
2266 if (mTmpBounds.equals(mBounds)) {
2290 mBounds.set(mTmpBounds);
H A DActivityStack.java350 private final SparseArray<Rect> mTmpBounds = new SparseArray<>(); field in class:ActivityStack
4768 mTmpBounds.clear();
4788 mTmpBounds.put(task.taskId, task.mBounds);
4794 mFullscreen = mWindowContainerController.resize(bounds, mTmpConfigs, mTmpBounds,

Completed in 1075 milliseconds