Lines Matching refs:lp
92 PagedViewCellLayout.LayoutParams lp = in onMeasure() local
94 lp.setup(mCellWidth, mCellHeight, mWidthGap, mHeightGap, in onMeasure()
98 int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(lp.width, in onMeasure()
100 int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(lp.height, in onMeasure()
121 PagedViewCellLayout.LayoutParams lp = in onLayout() local
123 minRowX = Math.min(minRowX, lp.x); in onLayout()
124 maxRowX = Math.max(maxRowX, lp.x + lp.width); in onLayout()
134 PagedViewCellLayout.LayoutParams lp = in onLayout() local
137 int childLeft = offsetX + lp.x; in onLayout()
138 int childTop = lp.y; in onLayout()
139 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()