Home
last modified time | relevance | path

Searched refs:tmpBounds (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/pip/
H A DPipSnapAlgorithm.java59 final Rect tmpBounds = new Rect(); in getSnapFraction() local
60 snapRectToClosestEdge(stackBounds, movementBounds, tmpBounds, stashType); in getSnapFraction()
61 final float widthFraction = (float) (tmpBounds.left - movementBounds.left) in getSnapFraction()
63 final float heightFraction = (float) (tmpBounds.top - movementBounds.top) in getSnapFraction()
65 if (tmpBounds.top == movementBounds.top) { in getSnapFraction()
67 } else if (tmpBounds.left == movementBounds.right) { in getSnapFraction()
69 } else if (tmpBounds.top == movementBounds.bottom) { in getSnapFraction()
/aosp14/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java165 final Rect tmpBounds = new Rect(); in dumpWindowRec() local
166 winfo.getBoundsInScreen(tmpBounds); in dumpWindowRec()
167 serializer.attribute("", "bounds", tmpBounds.toShortString()); in dumpWindowRec()
/aosp14/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp450 SkRect tmpBounds = bounds; in draw() local
451 tmpBounds.offsetTo(0, 0); in draw()
452 mStagingProperties.setBounds(tmpBounds); in draw()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
H A DPipMotionHelper.java502 Rect tmpBounds = new Rect();
512 tmpBounds.set((int) leftEdge,
516 resizeAndAnimatePipUnchecked(tmpBounds, UNSTASH_DURATION);