Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DFreeformWorkspaceLayoutAlgorithm.java87 float rowWidth = 0f; in update() local
92 if (rowWidth + width > normalizedWorkspaceWidth) { in update()
98 rowScale = Math.min(normalizedWorkspaceWidth / (rowWidth + width), in update()
101 rowWidth = 0; in update()
105 rowWidth = width; in update()
111 rowWidth += width; in update()
114 maxRowWidth = Math.max(rowWidth, maxRowWidth); in update()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
DPrintOptionsLayout.java68 int rowWidth = 0; in onMeasure() local
103 rowWidth += child.getMeasuredWidth() + childParams.getMarginStart() in onMeasure()
110 width = Math.max(width, rowWidth); in onMeasure()