Home
last modified time | relevance | path

Searched refs:tempEnd (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/split/
H A DSplitLayout.java689 Rect tempEnd = new Rect(end); in moveSurface() local
690 final float diffX = tempEnd.left - tempStart.left; in moveSurface()
691 final float diffY = tempEnd.top - tempStart.top; in moveSurface()
692 final float diffWidth = tempEnd.width() - tempStart.width(); in moveSurface()
693 final float diffHeight = tempEnd.height() - tempStart.height(); in moveSurface()
/aosp14/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java784 int tempEnd = childEnd; in getChildMeasureSpec() field in RelativeLayout
791 if (tempEnd == VALUE_NOT_SET) { in getChildMeasureSpec()
792 tempEnd = mySize - endPadding - endMargin; in getChildMeasureSpec()
796 final int maxAvailable = tempEnd - tempStart; in getChildMeasureSpec()