Home | History | Annotate | Download | only in widget

Lines Matching defs:mBottom

502                         height = Math.max(height, params.mBottom);
504 height = Math.max(height, params.mBottom + params.bottomMargin);
515 bottom = Math.max(bottom, params.mBottom + params.bottomMargin);
590 params.mBottom = params.mTop + childHeight;
619 params.mBottom += verticalOffset;
672 params.mBottom, params.height,
863 if (params.mTop == VALUE_NOT_SET && params.mBottom != VALUE_NOT_SET) {
865 params.mTop = params.mBottom - child.getMeasuredHeight();
866 } else if (params.mTop != VALUE_NOT_SET && params.mBottom == VALUE_NOT_SET) {
868 params.mBottom = params.mTop + child.getMeasuredHeight();
869 } else if (params.mTop == VALUE_NOT_SET && params.mBottom == VALUE_NOT_SET) {
876 params.mBottom = params.mTop + child.getMeasuredHeight();
881 params.mBottom = params.mTop + child.getMeasuredHeight();
954 childParams.mBottom = VALUE_NOT_SET;
961 childParams.mBottom = VALUE_NOT_SET;
965 childParams.mBottom = anchorParams.mTop - (anchorParams.topMargin +
969 childParams.mBottom = myHeight - mPaddingBottom - childParams.bottomMargin;
975 childParams.mTop = anchorParams.mBottom + (anchorParams.bottomMargin +
990 childParams.mBottom = anchorParams.mBottom - childParams.bottomMargin;
993 childParams.mBottom = myHeight - mPaddingBottom - childParams.bottomMargin;
1003 childParams.mBottom = myHeight - mPaddingBottom - childParams.bottomMargin;
1069 params.mBottom = top + childHeight;
1083 child.layout(st.mLeft, st.mTop, st.mRight, st.mBottom);
1250 private int mLeft, mTop, mRight, mBottom;