OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:myHeight
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/widget/
TabWidget.java
345
final int
myHeight
= getHeight();
347
myHeight
- leftStrip.getIntrinsicHeight(), bounds.left,
myHeight
);
348
rightStrip.setBounds(bounds.right,
myHeight
- rightStrip.getIntrinsicHeight(),
349
Math.max(getWidth(), bounds.right + rightStrip.getIntrinsicWidth()),
myHeight
);
RelativeLayout.java
385
int
myHeight
= -1;
401
myHeight
= heightSize;
409
height =
myHeight
;
455
measureChildHorizontal(child, params, myWidth,
myHeight
);
472
applyVerticalSizeRules(params,
myHeight
);
473
measureChild(child, params, myWidth,
myHeight
);
474
if (positionChildVertical(child, params,
myHeight
, isWrapContentHeight)) {
676
* @param
myHeight
Height of the RelativeLayout
678
private void measureChild(View child, LayoutParams params, int myWidth, int
myHeight
) {
688
myHeight
);
[
all
...]
Gallery.java
933
int
myHeight
= duringLayout ? getMeasuredHeight() : getHeight();
943
int availableSpace =
myHeight
- mSpinnerPadding.bottom
948
childTop =
myHeight
- mSpinnerPadding.bottom - childHeight;
[
all
...]
/frameworks/base/core/java/android/view/
SurfaceView.java
434
int
myHeight
= mRequestedHeight;
435
if (
myHeight
<= 0)
myHeight
= getHeight();
440
final boolean sizeChanged = mWidth != myWidth || mHeight !=
myHeight
;
458
mHeight =
myHeight
;
578
+ " w=" + myWidth + " h=" +
myHeight
);
583
c.surfaceChanged(mSurfaceHolder, mFormat, myWidth,
myHeight
);
[
all
...]
/frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java
566
int
myHeight
= mSurfaceHolder.getRequestedHeight();
567
if (
myHeight
<= 0)
myHeight
= ViewGroup.LayoutParams.MATCH_PARENT;
572
boolean sizeChanged = mWidth != myWidth || mHeight !=
myHeight
;
585
mHeight =
myHeight
;
592
mLayout.height =
myHeight
;
[
all
...]
Completed in 786 milliseconds