HomeSort by relevance Sort by last modified time
    Searched refs:myWidth (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/widget/
RelativeLayout.java 406 int myWidth = -1;
419 myWidth = widthSize;
427 width = myWidth;
463 if (isLayoutRtl() && myWidth == -1) {
464 myWidth = DEFAULT_WIDTH;
476 applyHorizontalSizeRules(params, myWidth, rules);
477 measureChildHorizontal(child, params, myWidth, myHeight);
479 if (positionChildHorizontal(child, params, myWidth, isWrapContentWidth)) {
494 measureChild(child, params, myWidth, myHeight);
501 width = Math.max(width, myWidth - params.mLeft)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontLinux.cpp 103 SkScalar myWidth = SkFloatToScalar(adv[i].width());
106 vPosBegin[i].set(x + myWidth, y);
107 vPosEnd[i].set(x + myWidth, y - myWidth);
109 x += myWidth;
  /frameworks/base/core/java/android/view/
SurfaceView.java 432 int myWidth = mRequestedWidth;
433 if (myWidth <= 0) myWidth = getWidth();
440 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
457 mWidth = myWidth;
577 + " w=" + myWidth + " h=" + myHeight);
582 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight);
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 564 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;
    [all...]

Completed in 1861 milliseconds