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.java117 private int mTotalLength; field in class:LinearLayoutCompat
453 childTop = getBottom() - getTop() - getPaddingBottom() - mTotalLength;
458 mTotalLength) / 2;
588 mTotalLength = 0;
614 mTotalLength += measureNullChild(i);
624 mTotalLength += mDividerHeight;
635 final int totalLength = mTotalLength;
636 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
656 totalWeight == 0 ? mTotalLength : 0);
663 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.java172 private int mTotalLength; field in class:LinearLayout
543 childTop = mBottom - mTop - mPaddingBottom - mTotalLength;
548 mTotalLength) / 2;
692 mTotalLength = 0;
718 mTotalLength += measureNullChild(i);
728 mTotalLength += mDividerHeight;
740 final int totalLength = mTotalLength;
741 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
757 final int usedHeight = totalWeight == 0 ? mTotalLength : 0;
770 final int totalLength = mTotalLength;
[all...]

Completed in 195 milliseconds