Home | History | Annotate | Download | only in widget

Lines Matching defs:mTotalLength

145     private int mTotalLength;
503 childTop = mBottom - mTop - mPaddingBottom - mTotalLength;
508 mTotalLength) / 2;
642 mTotalLength = 0;
668 mTotalLength += measureNullChild(i);
678 mTotalLength += mDividerHeight;
689 final int totalLength = mTotalLength;
690 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
710 totalWeight == 0 ? mTotalLength : 0);
717 final int totalLength = mTotalLength;
718 mTotalLength = Math.max(totalLength, totalLength + childHeight + lp.topMargin +
731 mBaselineChildTop = mTotalLength;
775 if (mTotalLength > 0 && hasDividerBeforeChildAt(count)) {
776 mTotalLength += mDividerHeight;
781 mTotalLength = 0;
787 mTotalLength += measureNullChild(i);
799 final int totalLength = mTotalLength;
800 mTotalLength = Math.max(totalLength, totalLength + largestChildHeight +
806 mTotalLength += mPaddingTop + mPaddingBottom;
808 int heightSize = mTotalLength;
820 int delta = heightSize - mTotalLength;
824 mTotalLength = 0;
903 final int totalLength = mTotalLength;
904 mTotalLength = Math.max(totalLength, totalLength + child.getMeasuredHeight() +
909 mTotalLength += mPaddingTop + mPaddingBottom;
1130 // mTotalLength contains the padding already
1131 childTop = mPaddingTop + bottom - top - mTotalLength;
1134 // mTotalLength contains the padding already
1136 childTop = mPaddingTop + (bottom - top - mTotalLength) / 2;
1242 // mTotalLength contains the padding already
1243 childLeft = mPaddingLeft + right - left - mTotalLength;
1247 // mTotalLength contains the padding already
1248 childLeft = mPaddingLeft + (right - left - mTotalLength) / 2;
1460 encoder.addProperty("measurement:totalLength", mTotalLength);
1461 encoder.addProperty("layout:totalLength", mTotalLength);