Searched defs:mTotalLength (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbACHeaderInterface.java29 protected int mTotalLength; // Total number of bytes returned for the class-specific field in class:UsbACHeaderInterface
44 return mTotalLength;
H A DUsbConfigDescriptor.java28 private int mTotalLength; // 2:2 Total length in bytes of data returned field in class:UsbConfigDescriptor
44 return mTotalLength;
69 mTotalLength = stream.unpackUsbShort();
/frameworks/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...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java120 private int mTotalLength; field in class:LinearLayoutCompat
457 childTop = getBottom() - getTop() - getPaddingBottom() - mTotalLength;
462 mTotalLength) / 2;
592 mTotalLength = 0;
618 mTotalLength += measureNullChild(i);
628 mTotalLength += mDividerHeight;
639 final int totalLength = mTotalLength;
640 mTotalLength = Math.max(totalLength, totalLength + lp.topMargin + lp.bottomMargin);
660 totalWeight == 0 ? mTotalLength : 0);
667 final int totalLength = mTotalLength;
[all...]

Completed in 272 milliseconds