Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAbsoluteLayout.java73 int childBottom; in onMeasure() local
79 childBottom = lp.y + child.getMeasuredHeight(); in onMeasure()
82 maxHeight = Math.max(maxHeight, childBottom); in onMeasure()
DAdapterViewAnimator.java769 int childBottom = mPaddingTop + child.getMeasuredHeight(); in onLayout() local
771 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom); in onLayout()
DSpinner.java737 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local
743 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
DListView.java1129 final int childBottom = focusedChild.getBottom(); in onSizeChanged() local
1130 final int offset = Math.max(0, childBottom - (h - mPaddingTop)); in onSizeChanged()
1967 final int childBottom = childTop + h; in setupChild() local
1968 child.layout(childrenLeft, childTop, childRight, childBottom); in setupChild()
2725 final int childBottom = childTop + h; in relayoutMeasuredItem() local
2726 child.layout(childLeft, childTop, childRight, childBottom); in relayoutMeasuredItem()
DGallery.java915 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local
926 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
DStackView.java1106 int childBottom = mPaddingTop + child.getMeasuredHeight();
1110 childRight + lp.horizontalOffset, childBottom + lp.verticalOffset);
DLinearLayout.java1627 int childBottom = height - mPaddingBottom; in layoutHorizontal() local
1716 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
DGridView.java1547 final int childBottom = childTop + h; in setupChild() local
1548 child.layout(childLeft, childTop, childRight, childBottom); in setupChild()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
DPrintOptionsLayout.java154 final int childBottom = childTop + child.getMeasuredHeight(); in onLayout() local
156 child.layout(childLeft, childTop, childRight, 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.java205 final int childBottom = mPaddingTop + child.getMeasuredHeight() - mPaddingBottom; in onLayout() local
238 child.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DLinearLayoutCompat.java1525 int childBottom = height - getPaddingBottom(); in layoutHorizontal() local
1614 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
/frameworks/support/v4/java/android/support/v4/widget/
DSlidingPaneLayout.java717 final int childBottom = childTop + child.getMeasuredHeight(); in onLayout() local
718 child.layout(childLeft, paddingTop, childRight, childBottom); in onLayout()
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DRecyclerView.java7241 final int childBottom = childTop + rect.height(); in requestChildRectangleOnScreen() local
7246 final int offScreenBottom = Math.max(0, childBottom - parentBottom); in requestChildRectangleOnScreen()