Home
last modified time | relevance | path

Searched refs:childBottom (Results 1 – 14 of 14) 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.java939 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local
950 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
DListView.java1268 final int childBottom = focusedChild.getBottom(); in onSizeChanged() local
1269 final int offset = Math.max(0, childBottom - (h - mPaddingTop)); in onSizeChanged()
2180 final int childBottom = childTop + h; in setupChild() local
2181 child.layout(childrenLeft, childTop, childRight, childBottom); in setupChild()
2918 final int childBottom = childTop + h; in relayoutMeasuredItem() local
2919 child.layout(childLeft, childTop, childRight, childBottom); in relayoutMeasuredItem()
DStackView.java1112 int childBottom = mPaddingTop + child.getMeasuredHeight();
1116 childRight + lp.horizontalOffset, childBottom + lp.verticalOffset);
DLinearLayout.java1714 int childBottom = height - mPaddingBottom; in layoutHorizontal() local
1802 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
DGridView.java1581 final int childBottom = childTop + h; in setupChild() local
1582 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/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationChildrenContainer.java726 float childBottom = childTop + child.getActualHeight();
731 } else if (childBottom > layoutEnd) {
732 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.java8941 final int childBottom = childTop + rect.height(); in requestChildRectangleOnScreen() local
8946 final int offScreenBottom = Math.max(0, childBottom - parentBottom); in requestChildRectangleOnScreen()