Home
last modified time | relevance | path

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

/packages/apps/TV/tuner/src/com/android/tv/tuner/layout/
DScaledLayout.java46 private Rect[] mRectArray; field in ScaledLayout
139 mRectArray = new Rect[count]; in onMeasure()
180 mRectArray[i] = in onMeasure()
196 if (child.getMeasuredHeight() > mRectArray[i].height()) { in onMeasure()
197 int overflowedHeight = child.getMeasuredHeight() - mRectArray[i].height(); in onMeasure()
199 mRectArray[i].bottom += overflowedHeight; in onMeasure()
200 mRectArray[i].top -= overflowedHeight; in onMeasure()
201 if (mRectArray[i].top < 0) { in onMeasure()
202 mRectArray[i].bottom -= mRectArray[i].top; in onMeasure()
203 mRectArray[i].top = 0; in onMeasure()
[all …]