/frameworks/base/core/java/android/widget/ |
D | AbsoluteLayout.java | 74 int childBottom; in onMeasure() local 80 childBottom = lp.y + child.getMeasuredHeight(); in onMeasure() 83 maxHeight = Math.max(maxHeight, childBottom); in onMeasure()
|
D | AdapterViewAnimator.java | 771 int childBottom = mPaddingTop + child.getMeasuredHeight(); in onLayout() local 773 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom); in onLayout()
|
D | Spinner.java | 771 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local 777 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
|
D | Gallery.java | 940 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local 951 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
|
D | ListView.java | 1264 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()
|
D | StackView.java | 1114 int childBottom = mPaddingTop + child.getMeasuredHeight(); 1118 childRight + lp.horizontalOffset, childBottom + lp.verticalOffset);
|
D | LinearLayout.java | 1714 int childBottom = height - mPaddingBottom; in layoutHorizontal() local 1802 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
|
D | GridView.java | 1582 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/ |
D | PrintOptionsLayout.java | 162 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/ |
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 | 208 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/ |
D | NotificationTopLineView.java | 211 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/ |
D | NotificationChildrenContainer.java | 759 float childBottom = childTop + child.getActualHeight(); 764 } else if (childBottom > layoutEnd) { 765 clipBottomAmount = (int) (childBottom - layoutEnd);
|
/frameworks/base/media/java/android/media/ |
D | Cea708CaptionRenderer.java | 1270 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/ |
D | RecyclerView.java | 9062 final int childBottom = childTop + rect.height(); in requestChildRectangleOnScreen() local 9067 final int offScreenBottom = Math.max(0, childBottom - parentBottom); in requestChildRectangleOnScreen()
|