Home
last modified time | relevance | path

Searched refs:childBottom (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/core/java/android/widget/
DAbsoluteLayout.java74 int childBottom; in onMeasure() local
80 childBottom = lp.y + child.getMeasuredHeight(); in onMeasure()
83 maxHeight = Math.max(maxHeight, childBottom); in onMeasure()
DAdapterViewAnimator.java771 int childBottom = mPaddingTop + child.getMeasuredHeight(); in onLayout() local
773 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom); in onLayout()
DSpinner.java771 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local
777 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
DGallery.java940 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local
951 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
DListView.java1264 final int childBottom = focusedChild.getBottom(); in onSizeChanged() local
1265 final int offset = Math.max(0, childBottom - (h - mPaddingTop)); in onSizeChanged()
2176 final int childBottom = childTop + h; in setupChild() local
2177 child.layout(childrenLeft, childTop, childRight, childBottom); in setupChild()
2914 final int childBottom = childTop + h; in relayoutMeasuredItem() local
2915 child.layout(childLeft, childTop, childRight, childBottom); in relayoutMeasuredItem()
DStackView.java1114 int childBottom = mPaddingTop + child.getMeasuredHeight();
1118 childRight + lp.horizontalOffset, childBottom + lp.verticalOffset);
DLinearLayout.java1714 int childBottom = height - mPaddingBottom; in layoutHorizontal() local
1802 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
DGridView.java1582 final int childBottom = childTop + h; in setupChild() local
1583 child.layout(childLeft, childTop, childRight, childBottom); in setupChild()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
DPrintOptionsLayout.java162 final int childBottom = childTop + child.getMeasuredHeight(); in onLayout() local
164 child.layout(childStart, childTop, childEnd, childBottom); in onLayout()
/frameworks/ex/widget/java/com/android/ex/widget/
DStaggeredGridView.java803 final int childBottom = childTop + childHeight; in layoutChildren() local
806 child.layout(childLeft, childTop, childRight, childBottom); in layoutChildren()
809 mItemBottoms[j] = childBottom; in layoutChildren()
965 final int childBottom = startFrom; in fillUp() local
966 final int childTop = childBottom - childHeight; in fillUp()
969 child.layout(childLeft, childTop, childRight, childBottom); in fillUp()
1080 final int childBottom = childTop + childHeight; in fillDown() local
1083 child.layout(childLeft, childTop, childRight, childBottom); in fillDown()
1086 mItemBottoms[i] = childBottom + rec.getMarginBelow(i - nextCol); in fillDown()
/frameworks/base/core/java/android/app/
DFragmentBreadCrumbs.java208 final int childBottom = mPaddingTop + child.getMeasuredHeight() - mPaddingBottom; in onLayout() local
241 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/frameworks/base/core/java/android/view/
DNotificationTopLineView.java211 int childBottom = ownHeight - mPaddingBottom; in onLayout() local
212 childTop = childBottom - childHeight - params.bottomMargin; in onLayout()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationChildrenContainer.java759 float childBottom = childTop + child.getActualHeight();
764 } else if (childBottom > layoutEnd) {
765 clipBottomAmount = (int) (childBottom - layoutEnd);
/frameworks/base/media/java/android/media/
DCea708CaptionRenderer.java1270 int childBottom = paddingLeft + mRectArray[i].bottom; in onLayout() local
1275 childBottom, childLeft, childRight, childTop)); in onLayout()
1277 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/frameworks/base/core/java/com/android/internal/widget/
DRecyclerView.java9062 final int childBottom = childTop + rect.height(); in requestChildRectangleOnScreen() local
9067 final int offScreenBottom = Math.max(0, childBottom - parentBottom); in requestChildRectangleOnScreen()