• Home
  • Raw
  • Download

Lines Matching refs:parent

240         ViewGroup parent = null;  in handleHotseatButtonKeyEvent()  local
247 parent = iconParent; in handleHotseatButtonKeyEvent()
252 parent = iconParent; in handleHotseatButtonKeyEvent()
260 parent = hotseatParent; in handleHotseatButtonKeyEvent()
270 parent = getCellLayoutChildrenForIndex(workspace, pageIndex + 1); in handleHotseatButtonKeyEvent()
271 newIcon = parent.getChildAt(0); in handleHotseatButtonKeyEvent()
277 parent = getCellLayoutChildrenForIndex(workspace, pageIndex - 1); in handleHotseatButtonKeyEvent()
278 newIcon = parent.getChildAt(0); in handleHotseatButtonKeyEvent()
284 parent = getCellLayoutChildrenForIndex(workspace, pageIndex - 1); in handleHotseatButtonKeyEvent()
285 newIcon = parent.getChildAt(parent.getChildCount() - 1); in handleHotseatButtonKeyEvent()
301 if (parent == iconParent && newIconIndex >= iconParent.getChildCount()) { in handleHotseatButtonKeyEvent()
304 if (parent != null) { in handleHotseatButtonKeyEvent()
306 newIcon = parent.getChildAt(newIconIndex); in handleHotseatButtonKeyEvent()
334 ShortcutAndWidgetContainer parent = (ShortcutAndWidgetContainer) v.getParent(); in handleIconKeyEvent() local
335 CellLayout iconLayout = (CellLayout) parent.getParent(); in handleIconKeyEvent()
342 final int iconIndex = parent.indexOfChild(v); in handleIconKeyEvent()
381 parent = getCellLayoutChildrenForIndex(workspace, newPageIndex); in handleIconKeyEvent()
382 if (parent != null) { in handleIconKeyEvent()
383 iconLayout = (CellLayout) parent.getParent(); in handleIconKeyEvent()
395 newIcon = parent.getChildAt(newIconIndex); in handleIconKeyEvent()
421 parent = getCellLayoutChildrenForIndex(workspace, newPageIndex); in handleIconKeyEvent()
422 if (parent != null) { in handleIconKeyEvent()
423 iconLayout = (CellLayout) parent.getParent(); in handleIconKeyEvent()
434 newIcon = parent.getChildAt(newIconIndex); in handleIconKeyEvent()
454 if (0 <= newIconIndex && newIconIndex < parent.getChildCount()) { in handleIconKeyEvent()
455 newIcon = parent.getChildAt(newIconIndex); in handleIconKeyEvent()
456 } else if (parent.getChildCount() <= newIconIndex && in handleIconKeyEvent()
457 newIconIndex < parent.getChildCount() + hotseatParent.getChildCount()) { in handleIconKeyEvent()
458 newIcon = hotseatParent.getChildAt(newIconIndex - parent.getChildCount()); in handleIconKeyEvent()
478 CellLayout parent = (CellLayout) container.getChildAt(i); in getCellLayoutChildrenForIndex() local
479 return parent.getShortcutsAndWidgets(); in getCellLayoutChildrenForIndex()