Searched refs:myHeight (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | RelativeLayout.java | 385 int myHeight = -1; in onMeasure() local 401 myHeight = heightSize; in onMeasure() 409 height = myHeight; in onMeasure() 455 measureChildHorizontal(child, params, myWidth, myHeight); in onMeasure() 472 applyVerticalSizeRules(params, myHeight); in onMeasure() 473 measureChild(child, params, myWidth, myHeight); in onMeasure() 474 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) { in onMeasure() 678 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) { in measureChild() argument 688 myHeight); in measureChild() 692 … private void measureChildHorizontal(View child, LayoutParams params, int myWidth, int myHeight) { in measureChildHorizontal() argument [all …]
|
D | TabWidget.java | 345 final int myHeight = getHeight(); in dispatchDraw() local 347 myHeight - leftStrip.getIntrinsicHeight(), bounds.left, myHeight); in dispatchDraw() local 348 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(), in dispatchDraw() 349 Math.max(getWidth(), bounds.right + rightStrip.getIntrinsicWidth()), myHeight); in dispatchDraw()
|
D | Gallery.java | 933 int myHeight = duringLayout ? getMeasuredHeight() : getHeight(); in calculateTop() local 943 int availableSpace = myHeight - mSpinnerPadding.bottom in calculateTop() 948 childTop = myHeight - mSpinnerPadding.bottom - childHeight; in calculateTop()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceView.java | 434 int myHeight = mRequestedHeight; in updateWindow() local 435 if (myHeight <= 0) myHeight = getHeight(); in updateWindow() 440 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight; in updateWindow() 458 mHeight = myHeight; in updateWindow() 578 + " w=" + myWidth + " h=" + myHeight); in updateWindow() 583 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight); in updateWindow()
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 566 int myHeight = mSurfaceHolder.getRequestedHeight(); in updateSurface() local 567 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT; in updateSurface() 572 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight; in updateSurface() 585 mHeight = myHeight; in updateSurface() 592 mLayout.height = myHeight; in updateSurface()
|