Lines Matching refs:newIconIndex

113             int newIconIndex = FocusLogic.handleKeyEvent(keyCode, matrix, iconIndex, pageIndex,  in onKey()  local
115 if (newIconIndex == FocusLogic.NOOP) { in onKey()
122 switch (newIconIndex) { in onKey()
130 ((newIconIndex == FocusLogic.PREVIOUS_PAGE_LEFT_COLUMN) in onKey()
162 newParent, v, newIconIndex); in onKey()
172 child = itemContainer.getChildAt(newIconIndex); in onKey()
268 int newIconIndex = FocusLogic.handleKeyEvent(keyCode, matrix, iconIndex, pageIndex, in handleHotseatButtonKeyEvent() local
272 switch (newIconIndex) { in handleHotseatButtonKeyEvent()
319 if (parent == iconParent && newIconIndex >= iconParent.getChildCount()) { in handleHotseatButtonKeyEvent()
320 newIconIndex -= iconParent.getChildCount(); in handleHotseatButtonKeyEvent()
323 if (newIcon == null && newIconIndex >= 0) { in handleHotseatButtonKeyEvent()
324 newIcon = parent.getChildAt(newIconIndex); in handleHotseatButtonKeyEvent()
391 int newIconIndex = FocusLogic.handleKeyEvent(keyCode, matrix, iconIndex, pageIndex, in handleIconKeyEvent() local
396 switch (newIconIndex) { in handleIconKeyEvent()
405 if (newIconIndex == FocusLogic.NEXT_PAGE_RIGHT_COLUMN) { in handleIconKeyEvent()
414 newIconIndex = FocusLogic.handleKeyEvent(keyCode, matrix, FocusLogic.PIVOT, in handleIconKeyEvent()
416 if (newIconIndex == FocusLogic.NEXT_PAGE_FIRST_ITEM) { in handleIconKeyEvent()
419 } else if (newIconIndex == FocusLogic.PREVIOUS_PAGE_LAST_ITEM) { in handleIconKeyEvent()
423 newIcon = parent.getChildAt(newIconIndex); in handleIconKeyEvent()
445 if (newIconIndex == FocusLogic.PREVIOUS_PAGE_LEFT_COLUMN) { in handleIconKeyEvent()
453 newIconIndex = FocusLogic.handleKeyEvent(keyCode, matrix, FocusLogic.PIVOT, in handleIconKeyEvent()
455 if (newIconIndex == FocusLogic.NEXT_PAGE_FIRST_ITEM) { in handleIconKeyEvent()
458 } else if (newIconIndex == FocusLogic.PREVIOUS_PAGE_LAST_ITEM) { in handleIconKeyEvent()
462 newIcon = parent.getChildAt(newIconIndex); in handleIconKeyEvent()
482 if (0 <= newIconIndex && newIconIndex < parent.getChildCount()) { in handleIconKeyEvent()
483 newIcon = parent.getChildAt(newIconIndex); in handleIconKeyEvent()
484 } else if (parent.getChildCount() <= newIconIndex && in handleIconKeyEvent()
485 newIconIndex < parent.getChildCount() + hotseatParent.getChildCount()) { in handleIconKeyEvent()
486 newIcon = hotseatParent.getChildAt(newIconIndex - parent.getChildCount()); in handleIconKeyEvent()