Searched defs:mTmpBounds (Results 1 - 9 of 9) 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.java139 private final Rect mTmpBounds = new Rect(); field in class:PipTouchHandler
622 mTmpBounds.set(mMotionHelper.getBounds());
623 mTmpBounds.offsetTo((int) left, (int) top);
624 mMotionHelper.movePip(mTmpBounds);
634 ? 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/wear/src/android/support/wear/widget/
H A DRoundedDrawable.java92 private final Rect mTmpBounds = new Rect(); field in class:RoundedDrawable
193 mTmpBounds.right = bounds.width();
194 mTmpBounds.bottom = bounds.height();
224 mTmpBounds.inset(padding, padding);
225 mDrawable.setBounds(mTmpBounds);
227 mTmpBounds.inset(-padding, -padding);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java239 Rect mTmpBounds = new Rect(); field in class:RecentsImpl
753 systemInsets.left, systemInsets.right, mTmpBounds);
755 stackLayout.initialize(displayRect, windowRect, mTmpBounds,
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java237 private final Rect mTmpBounds = new Rect(); field in class:VectorDrawableCompat
284 copyBounds(mTmpBounds);
285 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) {
311 int scaledWidth = (int) (mTmpBounds.width() * canvasScaleX);
312 int scaledHeight = (int) (mTmpBounds.height() * canvasScaleY);
321 canvas.translate(mTmpBounds.left, mTmpBounds.top);
326 canvas.translate(mTmpBounds.width(), 0);
333 mTmpBounds
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java264 private final Rect mTmpBounds = new Rect(); field in class:VectorDrawable
328 copyBounds(mTmpBounds);
329 if (mTmpBounds.width() <= 0 || mTmpBounds.height() <= 0) {
340 colorFilterNativeInstance, mTmpBounds, needMirroring(),
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java355 private final Rect mTmpBounds = new Rect(); field in class:ActivityRecord
2252 computeBounds(mTmpBounds);
2253 if (mTmpBounds.equals(mBounds)) {
2257 mBounds.set(mTmpBounds);
H A DActivityStack.java348 private final SparseArray<Rect> mTmpBounds = new SparseArray<>(); field in class:ActivityStack
4801 mTmpBounds.clear();
4821 mTmpBounds.put(task.taskId, task.mBounds);
4827 mFullscreen = mWindowContainerController.resize(bounds, mTmpConfigs, mTmpBounds,

Completed in 252 milliseconds