Home
last modified time | relevance | path

Searched refs:myHeight (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
DRelativeLayout.java413 int myHeight = -1; in onMeasure() local
429 myHeight = heightSize; in onMeasure()
437 height = myHeight; in onMeasure()
481 measureChildHorizontal(child, params, myWidth, myHeight); in onMeasure()
498 applyVerticalSizeRules(params, myHeight, child.getBaseline()); in onMeasure()
499 measureChild(child, params, myWidth, myHeight); in onMeasure()
500 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) { in onMeasure()
685 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) { in measureChild() argument
695 myHeight); in measureChild()
700 View child, LayoutParams params, int myWidth, int myHeight) { in measureChildHorizontal() argument
[all …]
DTabWidget.java409 final int myHeight = getHeight(); in dispatchDraw() local
412 myHeight - leftStrip.getIntrinsicHeight(), bounds.left, myHeight); in dispatchDraw() local
415 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(), in dispatchDraw()
417 myHeight); in dispatchDraw()
DGallery.java961 int myHeight = duringLayout ? getMeasuredHeight() : getHeight(); in calculateTop() local
971 int availableSpace = myHeight - mSpinnerPadding.bottom in calculateTop()
976 childTop = myHeight - mSpinnerPadding.bottom - childHeight; in calculateTop()
/frameworks/base/core/java/android/view/
DSurfaceView.java907 int myHeight = mRequestedHeight; in updateSurface() local
908 if (myHeight <= 0) myHeight = getHeight(); in updateSurface()
916 final boolean sizeChanged = mSurfaceWidth != myWidth || mSurfaceHeight != myHeight; in updateSurface()
946 mSurfaceHeight = myHeight; in updateSurface()
1013 + " w=" + myWidth + " h=" + myHeight); in updateSurface()
1018 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight); in updateSurface()
/frameworks/base/core/java/android/service/wallpaper/
DWallpaperService.java1100 int myHeight = mSurfaceHolder.getRequestedHeight(); in updateSurface() local
1101 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT; in updateSurface()
1107 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight; in updateSurface()
1121 mHeight = myHeight; in updateSurface()
1140 && myHeight == ViewGroup.LayoutParams.MATCH_PARENT) { in updateSurface()
1142 mLayout.height = myHeight; in updateSurface()
1147 maxBounds.height() / (float) myHeight); in updateSurface()
1149 mLayout.height = (int) (myHeight * layoutScale + .5f); in updateSurface()
1256 h = myHeight; in updateSurface()