Searched refs:myWidth (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java384 int myWidth = -1;
397 myWidth = widthSize;
405 width = myWidth;
441 if (isLayoutRtl() && myWidth == -1) {
442 myWidth = DEFAULT_WIDTH;
454 applyHorizontalSizeRules(params, myWidth, rules);
455 measureChildHorizontal(child, params, myWidth, myHeight);
457 if (positionChildHorizontal(child, params, myWidth, isWrapContentWidth)) {
473 measureChild(child, params, myWidth, myHeight);
481 width = Math.max(width, myWidth
678 measureChild(View child, LayoutParams params, int myWidth, int myHeight) argument
692 measureChildHorizontal(View child, LayoutParams params, int myWidth, int myHeight) argument
811 positionChildHorizontal(View child, LayoutParams params, int myWidth, boolean wrapContent) argument
877 applyHorizontalSizeRules(LayoutParams childParams, int myWidth, int[] rules) argument
1028 centerHorizontal(View child, LayoutParams params, int myWidth) argument
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceView.java432 int myWidth = mRequestedWidth;
433 if (myWidth <= 0) myWidth = getWidth();
440 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
457 mWidth = myWidth;
578 + " w=" + myWidth + " h=" + myHeight);
583 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java564 int myWidth = mSurfaceHolder.getRequestedWidth();
565 if (myWidth <= 0) myWidth = ViewGroup.LayoutParams.MATCH_PARENT;
572 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
584 mWidth = myWidth;
591 mLayout.width = myWidth;

Completed in 629 milliseconds