Searched refs:childBottom (Results 1 – 10 of 10) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
D | NotificationLinearLayout.java | 85 final int childBottom = child.getBottom(); in onDraw() local 87 glow.setBounds(child.getLeft() - padding.left + insetLeft, childBottom, in onDraw() local 88 child.getRight() - padding.right, childBottom + glowHeight); in onDraw()
|
/frameworks/base/core/java/android/widget/ |
D | AbsoluteLayout.java | 70 int childBottom; in onMeasure() local 76 childBottom = lp.y + child.getMeasuredHeight(); in onMeasure() 79 maxHeight = Math.max(maxHeight, childBottom); in onMeasure()
|
D | Spinner.java | 418 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local 424 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
|
D | AdapterViewAnimator.java | 754 int childBottom = mPaddingTop + child.getMeasuredHeight(); in onLayout() local 756 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom); in onLayout()
|
D | ListView.java | 1098 final int childBottom = focusedChild.getBottom(); in onSizeChanged() local 1099 final int offset = Math.max(0, childBottom - (h - mPaddingTop)); in onSizeChanged() 1862 final int childBottom = childTop + h; in setupChild() local 1863 child.layout(childrenLeft, childTop, childRight, childBottom); in setupChild() 2552 final int childBottom = childTop + h; in relayoutMeasuredItem() local 2553 child.layout(childLeft, childTop, childRight, childBottom); in relayoutMeasuredItem()
|
D | Gallery.java | 891 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() local 902 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
|
D | StackView.java | 1099 int childBottom = mPaddingTop + child.getMeasuredHeight(); 1103 childRight + lp.horizontalOffset, childBottom + lp.verticalOffset);
|
D | LinearLayout.java | 1512 int childBottom = height - mPaddingBottom; in layoutHorizontal() local 1601 childTop = childBottom - childHeight - lp.bottomMargin; in layoutHorizontal()
|
D | GridView.java | 1430 final int childBottom = childTop + h; in setupChild() local 1431 child.layout(childLeft, childTop, childRight, childBottom); in setupChild()
|
/frameworks/base/core/java/android/app/ |
D | FragmentBreadCrumbs.java | 169 int childBottom = mPaddingTop + child.getMeasuredHeight() - mPaddingBottom; in onLayout() local 170 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom); in onLayout()
|