Home
last modified time | relevance | path

Searched refs:mTotalLength (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DLinearLayoutCompat.java117 private int mTotalLength; field in LinearLayoutCompat
453 childTop = getBottom() - getTop() - getPaddingBottom() - mTotalLength; in getBaseline()
458 mTotalLength) / 2; in getBaseline()
588 mTotalLength = 0; in measureVertical()
614 mTotalLength += measureNullChild(i); in measureVertical()
624 mTotalLength += mDividerHeight; in measureVertical()
635 final int totalLength = mTotalLength; in measureVertical()
636 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin); in measureVertical()
656 totalWeight == 0 ? mTotalLength : 0); in measureVertical()
663 final int totalLength = mTotalLength; in measureVertical()
[all …]
/frameworks/base/core/java/android/widget/
DLinearLayout.java172 private int mTotalLength; field in LinearLayout
543 childTop = mBottom - mTop - mPaddingBottom - mTotalLength; in getBaseline()
548 mTotalLength) / 2; in getBaseline()
692 mTotalLength = 0; in measureVertical()
718 mTotalLength += measureNullChild(i); in measureVertical()
728 mTotalLength += mDividerHeight; in measureVertical()
740 final int totalLength = mTotalLength; in measureVertical()
741 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin); in measureVertical()
757 final int usedHeight = totalWeight == 0 ? mTotalLength : 0; in measureVertical()
770 final int totalLength = mTotalLength; in measureVertical()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
DCachedPathIteratorFactory.java48 private final float mTotalLength; field in CachedPathIteratorFactory
125 mTotalLength = totalLength; in CachedPathIteratorFactory()
482 return mTotalLength; in getTotalLength()
/frameworks/base/core/java/android/gesture/
DGestureOverlayView.java98 private float mTotalLength; field in GestureOverlayView
564 mTotalLength = 0; in touchDown()
646 mTotalLength += (float) Math.hypot(dx, dy); in touchMove()
648 if (mTotalLength > mGestureStrokeLengthThreshold) { in touchMove()