OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:smallestitemsat
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java
160
long
smallestItemsAt
= 0;
197
if (cellsUsed == 1)
smallestItemsAt
|= (1 << i);
231
smallestItemsAt
|= minCellsAt;
243
if (lp.cellsUsed == minCells)
smallestItemsAt
|= 1 << i;
263
if (cellsRemaining > 0 &&
smallestItemsAt
!= 0 &&
265
float expandCount = Long.bitCount(
smallestItemsAt
);
269
if ((
smallestItemsAt
& 1) != 0) {
273
if ((
smallestItemsAt
& (1 << (childCount - 1))) != 0) {
283
if ((
smallestItemsAt
& (1 << i)) == 0) continue;
Completed in 397 milliseconds