OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mMaxHeight
(Results
1 - 9
of
9
) sorted by null
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/
MaxHeightScrollView.java
25
private int
mMaxHeight
;
32
mMaxHeight
= maxHeight;
38
setMeasuredDimension(getMeasuredWidth(), Math.min(getMeasuredHeight(),
mMaxHeight
));
/packages/apps/Mms/src/com/android/mms/layout/
HVGALayoutParameters.java
34
private static int
mMaxHeight
;
50
mMaxHeight
=
53
mImageHeightLandscape = (int) (
mMaxHeight
* .90f);
54
mTextHeightLandscape = (int) (
mMaxHeight
* .10f);
60
"
mMaxHeight
: " +
mMaxHeight
+
71
:
mMaxHeight
;
75
return mType == HVGA_LANDSCAPE ?
mMaxHeight
/frameworks/volley/src/com/android/volley/toolbox/
ImageRequest.java
47
private final int
mMaxHeight
;
77
mMaxHeight
= maxHeight;
141
if (mMaxWidth == 0 &&
mMaxHeight
== 0) {
152
int desiredWidth = getResizedDimension(mMaxWidth,
mMaxHeight
,
154
int desiredHeight = getResizedDimension(
mMaxHeight
, mMaxWidth,
/frameworks/rs/
rsFont.h
167
uint32_t
mMaxHeight
;
174
:
mMaxHeight
(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
/frameworks/base/core/java/android/widget/
ImageView.java
73
private int
mMaxHeight
= Integer.MAX_VALUE;
309
return
mMaxHeight
;
334
mMaxHeight
= maxHeight;
816
heightSize = resolveAdjustedSize(h + ptop + pbottom,
mMaxHeight
, heightMeasureSpec);
850
heightSize = resolveAdjustedSize(newHeight,
mMaxHeight
,
[
all
...]
ProgressBar.java
200
int
mMaxHeight
;
265
// Calling this method can set
mMaxHeight
, make sure the corresponding
266
// XML attribute for
mMaxHeight
is read after calling this method
276
mMaxHeight
= a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight,
mMaxHeight
);
422
mMaxHeight
= 48;
536
if (
mMaxHeight
< drawableHeight) {
537
mMaxHeight
= drawableHeight;
[
all
...]
NumberPicker.java
228
private final int
mMaxHeight
;
594
mMaxHeight
= attributesArray.getDimensionPixelSize(
596
if (mMinHeight != SIZE_UNSPECIFIED &&
mMaxHeight
!= SIZE_UNSPECIFIED
597
&& mMinHeight >
mMaxHeight
) {
761
final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec,
mMaxHeight
);
[
all
...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java
80
int
mMaxHeight
;
134
// Calling this method can set
mMaxHeight
, make sure the corresponding
135
// XML attribute for
mMaxHeight
is read after calling this method
144
mMaxHeight
= a.getDimensionPixelSize(12,
mMaxHeight
);
252
mMaxHeight
= 48;
358
if (
mMaxHeight
< drawableHeight) {
359
mMaxHeight
= drawableHeight;
810
dh = Math.max(mMinHeight, Math.min(
mMaxHeight
, d.getIntrinsicHeight()));
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java
197
int
mMaxHeight
;
258
// Calling this method can set
mMaxHeight
, make sure the corresponding
259
// XML attribute for
mMaxHeight
is read after calling this method
269
mMaxHeight
= a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight,
mMaxHeight
);
411
mMaxHeight
= 48;
519
if (
mMaxHeight
< drawableHeight) {
520
mMaxHeight
= drawableHeight;
[
all
...]
Completed in 1493 milliseconds