Searched refs:myHeight (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | RelativeLayout.java | 412 int myHeight = -1; in onMeasure() local 428 myHeight = heightSize; in onMeasure() 436 height = myHeight; in onMeasure() 480 measureChildHorizontal(child, params, myWidth, myHeight); in onMeasure() 497 applyVerticalSizeRules(params, myHeight, child.getBaseline()); in onMeasure() 498 measureChild(child, params, myWidth, myHeight); in onMeasure() 499 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) { in onMeasure() 684 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) { in measureChild() argument 694 myHeight); in measureChild() 699 View child, LayoutParams params, int myWidth, int myHeight) { in measureChildHorizontal() argument [all …]
|
D | TabWidget.java | 396 final int myHeight = getHeight(); in dispatchDraw() local 399 myHeight - leftStrip.getIntrinsicHeight(), bounds.left, myHeight); in dispatchDraw() local 402 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(), in dispatchDraw() 404 myHeight); in dispatchDraw()
|
D | Gallery.java | 960 int myHeight = duringLayout ? getMeasuredHeight() : getHeight(); in calculateTop() local 970 int availableSpace = myHeight - mSpinnerPadding.bottom in calculateTop() 975 childTop = myHeight - mSpinnerPadding.bottom - childHeight; in calculateTop()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceView.java | 699 int myHeight = mRequestedHeight; in updateSurface() local 700 if (myHeight <= 0) myHeight = getHeight(); in updateSurface() 708 final boolean sizeChanged = mSurfaceWidth != myWidth || mSurfaceHeight != myHeight; in updateSurface() 730 mSurfaceHeight = myHeight; in updateSurface() 911 + " w=" + myWidth + " h=" + myHeight); in updateSurface() 916 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight); in updateSurface()
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 752 int myHeight = mSurfaceHolder.getRequestedHeight(); in updateSurface() local 753 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT; in updateSurface() 759 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight; in updateSurface() 773 mHeight = myHeight; in updateSurface() 782 mLayout.height = myHeight; in updateSurface() 789 (float) displayInfo.logicalHeight / (float) myHeight, in updateSurface() 791 mLayout.height = (int) (myHeight * layoutScale); in updateSurface() 886 h = myHeight; in updateSurface()
|