Searched defs:mTotalLength (Results 1 - 4 of 4) sorted by last modified time

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java122 private int mTotalLength; field in class:LinearLayoutCompat
459 childTop = getBottom() - getTop() - getPaddingBottom() - mTotalLength;
464 mTotalLength) / 2;
594 mTotalLength = 0;
620 mTotalLength += measureNullChild(i);
630 mTotalLength += mDividerHeight;
641 final int totalLength = mTotalLength;
642 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
662 totalWeight == 0 ? mTotalLength : 0);
669 final int totalLength = mTotalLength;
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DCachedPathIteratorFactory.java48 private final float mTotalLength; field in class:CachedPathIteratorFactory
125 mTotalLength = totalLength;
482 return mTotalLength;
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java98 private float mTotalLength; field in class:GestureOverlayView
564 mTotalLength = 0;
646 mTotalLength += (float) Math.hypot(dx, dy);
648 if (mTotalLength > mGestureStrokeLengthThreshold) {
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java195 private int mTotalLength; field in class:LinearLayout
588 childTop = mBottom - mTop - mPaddingBottom - mTotalLength;
593 mTotalLength) / 2;
737 mTotalLength = 0;
765 mTotalLength += measureNullChild(i);
776 mTotalLength += mDividerHeight;
788 final int totalLength = mTotalLength;
789 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
805 final int usedHeight = totalWeight == 0 ? mTotalLength : 0;
818 final int totalLength = mTotalLength;
[all...]

Completed in 83 milliseconds