Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DActionMenuView.java207 long smallestItemsAt = 0; in onMeasureExactFormat() local
244 if (cellsUsed == 1) smallestItemsAt |= (1 << i); in onMeasureExactFormat()
278 smallestItemsAt |= minCellsAt; in onMeasureExactFormat()
290 if (lp.cellsUsed == minCells) smallestItemsAt |= 1 << i; in onMeasureExactFormat()
310 if (cellsRemaining > 0 && smallestItemsAt != 0 && in onMeasureExactFormat()
312 float expandCount = Long.bitCount(smallestItemsAt); in onMeasureExactFormat()
316 if ((smallestItemsAt & 1) != 0) { in onMeasureExactFormat()
320 if ((smallestItemsAt & (1 << (childCount - 1))) != 0) { in onMeasureExactFormat()
330 if ((smallestItemsAt & (1 << i)) == 0) continue; in onMeasureExactFormat()