OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:myheight
(Results
1 - 6
of
6
) sorted by null
/packages/apps/MusicFX/src/com/android/musicfx/
SeekBarRotator.java
79
int
myheight
= b - t;
local
80
int childwidth =
myheight
;
83
child.layout(0,
myheight
, childwidth,
myheight
+ childheight);
/frameworks/base/core/java/android/widget/
RelativeLayout.java
393
int
myHeight
= -1;
409
myHeight
= heightSize;
417
height =
myHeight
;
461
measureChildHorizontal(child, params, myWidth,
myHeight
);
478
applyVerticalSizeRules(params,
myHeight
, child.getBaseline());
479
measureChild(child, params, myWidth,
myHeight
);
480
if (positionChildVertical(child, params,
myHeight
, isWrapContentHeight)) {
663
* @param
myHeight
Height of the RelativeLayout
665
private void measureChild(View child, LayoutParams params, int myWidth, int
myHeight
) {
675
myHeight
);
[
all
...]
TabWidget.java
349
final int
myHeight
= getHeight();
351
myHeight
- leftStrip.getIntrinsicHeight(), bounds.left,
myHeight
);
352
rightStrip.setBounds(bounds.right,
myHeight
- rightStrip.getIntrinsicHeight(),
353
Math.max(getWidth(), bounds.right + rightStrip.getIntrinsicWidth()),
myHeight
);
Gallery.java
936
int
myHeight
= duringLayout ? getMeasuredHeight() : getHeight();
946
int availableSpace =
myHeight
- mSpinnerPadding.bottom
951
childTop =
myHeight
- mSpinnerPadding.bottom - childHeight;
[
all
...]
/frameworks/base/core/java/android/view/
SurfaceView.java
442
int
myHeight
= mRequestedHeight;
443
if (
myHeight
<= 0)
myHeight
= getHeight();
448
final boolean sizeChanged = mWidth != myWidth || mHeight !=
myHeight
;
466
mHeight =
myHeight
;
588
+ " w=" + myWidth + " h=" +
myHeight
);
593
c.surfaceChanged(mSurfaceHolder, mFormat, myWidth,
myHeight
);
[
all
...]
/frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java
594
int
myHeight
= mSurfaceHolder.getRequestedHeight();
595
if (
myHeight
<= 0)
myHeight
= ViewGroup.LayoutParams.MATCH_PARENT;
601
boolean sizeChanged = mWidth != myWidth || mHeight !=
myHeight
;
615
mHeight =
myHeight
;
622
mLayout.height =
myHeight
;
[
all
...]
Completed in 696 milliseconds