Searched defs:moves (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java335 // consume pending moves, focus to item on the same row.
370 // if we hit wall, need clear the remaining pending moves.
3624 * Stops when moves are all consumed or reach first/last visible item.
3625 * Returning remaining moves.
3627 int processSelectionMoves(boolean preventScroll, int moves) { argument
3629 return moves;
3635 for (int i = 0, count = getChildCount(); i < count && moves != 0; i++) {
3636 int index = moves > 0 ? i : count - 1 - i;
3648 if ((moves > 0 && position > focusPosition)
3649 || (moves <
[all...]

Completed in 261 milliseconds