OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:usedHeight
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/core/java/com/android/internal/widget/
AlertDialogLayout.java
112
int
usedHeight
= getPaddingTop() + getPaddingBottom();
117
usedHeight
+= topPanel.getMeasuredHeight();
128
usedHeight
+= buttonHeight;
139
Math.max(0, heightSize -
usedHeight
), heightMode);
145
usedHeight
+= middleHeight;
149
int remainingHeight = heightSize -
usedHeight
;
155
usedHeight
-= buttonHeight;
167
usedHeight
+= buttonPanel.getMeasuredHeight();
174
usedHeight
-= middleHeight;
187
usedHeight
+= middlePanel.getMeasuredHeight()
[
all
...]
/packages/apps/Gallery/src/com/android/camera/
EvenlySpacedLayout.java
99
int
usedHeight
= 0;
104
usedHeight
+= child.getMeasuredHeight();
108
int spacing = (b - t -
usedHeight
) /
/packages/apps/Launcher3/src/com/android/launcher3/
DeviceProfile.java
193
float
usedHeight
= (cellHeightPx * inv.numRows);
198
if (
usedHeight
> maxHeight) {
199
scale = maxHeight /
usedHeight
;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java
292
final int
usedHeight
= childrenBounds.height() + verticalPadding;
293
height = chooseSize(hSpec,
usedHeight
, getMinimumHeight());
[
all
...]
StaggeredGridLayoutManager.java
582
final int
usedHeight
= childrenBounds.height() + verticalPadding;
583
height = chooseSize(hSpec,
usedHeight
, getMinimumHeight());
[
all
...]
RecyclerView.java
[
all
...]
/frameworks/base/core/java/android/widget/
LinearLayout.java
757
final int
usedHeight
= totalWeight == 0 ? mTotalLength : 0;
759
heightMeasureSpec,
usedHeight
);
[
all
...]
/prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar
Completed in 262 milliseconds