/frameworks/base/core/java/android/widget/ |
D | AbsoluteLayout.java | 73 int childBottom; in onMeasure() local 79 childBottom = lp.y + child.getMeasuredHeight(); in onMeasure() 82 maxHeight = Math.max(maxHeight, childBottom); in onMeasure()
|
D | AdapterViewAnimator.java | 769 int childBottom = mPaddingTop + child.getMeasuredHeight(); in onLayout() local 771 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom); in onLayout()
|
D | Spinner.java | 737 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local 743 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
|
D | ListView.java | 1129 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()
|
D | Gallery.java | 915 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local 926 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
|
D | StackView.java | 1106 int childBottom = mPaddingTop + child.getMeasuredHeight(); 1110 childRight + lp.horizontalOffset, childBottom + lp.verticalOffset);
|
D | LinearLayout.java | 1627 int childBottom = height - mPaddingBottom; in layoutHorizontal() local 1716 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
|
D | GridView.java | 1547 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/ |
D | PrintOptionsLayout.java | 154 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/ |
D | StaggeredGridView.java | 803 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/ |
D | FragmentBreadCrumbs.java | 205 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/ |
D | LinearLayoutCompat.java | 1525 int childBottom = height - getPaddingBottom(); in layoutHorizontal() local 1614 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
|
/frameworks/support/v4/java/android/support/v4/widget/ |
D | SlidingPaneLayout.java | 717 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/ |
D | RecyclerView.java | 7241 final int childBottom = childTop + rect.height(); in requestChildRectangleOnScreen() local 7246 final int offScreenBottom = Math.max(0, childBottom - parentBottom); in requestChildRectangleOnScreen()
|