HomeSort by relevance Sort by last modified time
    Searched defs:cellsUsed (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/widget/
ActionMenuView.java 225 lp.cellsUsed = 0;
234 final int cellsUsed = measureChildForCells(child, cellSize, cellsAvailable,
237 maxCellsUsed = Math.max(maxCellsUsed, cellsUsed);
241 cellsRemaining -= cellsUsed;
243 if (cellsUsed == 1) smallestItemsAt |= (1 << i);
266 if (lp.cellsUsed < minCells) {
267 minCells = lp.cellsUsed;
270 } else if (lp.cellsUsed == minCells) {
289 if (lp.cellsUsed == minCells) smallestItemsAt |= 1 << i;
297 lp.cellsUsed++
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ActionMenuView.java 229 lp.cellsUsed = 0;
238 final int cellsUsed = measureChildForCells(child, cellSize, cellsAvailable,
241 maxCellsUsed = Math.max(maxCellsUsed, cellsUsed);
245 cellsRemaining -= cellsUsed;
247 if (cellsUsed == 1) smallestItemsAt |= (1 << i);
270 if (lp.cellsUsed < minCells) {
271 minCells = lp.cellsUsed;
274 } else if (lp.cellsUsed == minCells) {
293 if (lp.cellsUsed == minCells) smallestItemsAt |= 1 << i;
301 lp.cellsUsed++
    [all...]

Completed in 75 milliseconds