Searched refs:myHeight (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | RelativeLayout.java | 393 int myHeight = -1; in onMeasure() local 409 myHeight = heightSize; in onMeasure() 417 height = myHeight; in onMeasure() 461 measureChildHorizontal(child, params, myWidth, myHeight); in onMeasure() 478 applyVerticalSizeRules(params, myHeight, child.getBaseline()); in onMeasure() 479 measureChild(child, params, myWidth, myHeight); in onMeasure() 480 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) { in onMeasure() 665 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) { in measureChild() argument 675 myHeight); in measureChild() 680 View child, LayoutParams params, int myWidth, int myHeight) { in measureChildHorizontal() argument [all …]
|
D | TabWidget.java | 349 final int myHeight = getHeight(); in dispatchDraw() local 351 myHeight - leftStrip.getIntrinsicHeight(), bounds.left, myHeight); in dispatchDraw() local 352 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(), in dispatchDraw() 353 Math.max(getWidth(), bounds.right + rightStrip.getIntrinsicWidth()), myHeight); in dispatchDraw()
|
D | Gallery.java | 936 int myHeight = duringLayout ? getMeasuredHeight() : getHeight(); in calculateTop() local 946 int availableSpace = myHeight - mSpinnerPadding.bottom in calculateTop() 951 childTop = myHeight - mSpinnerPadding.bottom - childHeight; in calculateTop()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceView.java | 442 int myHeight = mRequestedHeight; in updateWindow() local 443 if (myHeight <= 0) myHeight = getHeight(); in updateWindow() 448 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight; in updateWindow() 466 mHeight = myHeight; in updateWindow() 588 + " w=" + myWidth + " h=" + myHeight); in updateWindow() 593 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight); in updateWindow()
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 594 int myHeight = mSurfaceHolder.getRequestedHeight(); in updateSurface() local 595 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT; in updateSurface() 601 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight; in updateSurface() 615 mHeight = myHeight; in updateSurface() 622 mLayout.height = myHeight; in updateSurface()
|