Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DActionMenuView.java208 long smallestItemsAt = 0; in onMeasureExactFormat() local
245 if (cellsUsed == 1) smallestItemsAt |= (1 << i); in onMeasureExactFormat()
279 smallestItemsAt |= minCellsAt; in onMeasureExactFormat()
291 if (lp.cellsUsed == minCells) smallestItemsAt |= 1 << i; in onMeasureExactFormat()
311 if (cellsRemaining > 0 && smallestItemsAt != 0 && in onMeasureExactFormat()
313 float expandCount = Long.bitCount(smallestItemsAt); in onMeasureExactFormat()
317 if ((smallestItemsAt & 1) != 0) { in onMeasureExactFormat()
321 if ((smallestItemsAt & (1 << (childCount - 1))) != 0) { in onMeasureExactFormat()
331 if ((smallestItemsAt & (1 << i)) == 0) continue; in onMeasureExactFormat()