Lines Matching refs:mContent
38 private CellLayout mContent; field in Hotseat
71 return mContent; in getLayout()
79 mContent.setOnLongClickListener(l); in setOnLongClickListener()
88 return hasVerticalHotseat() ? (mContent.getCountY() - y - 1) : x; in getOrderInHotseat()
95 return hasVerticalHotseat() ? (mContent.getCountY() - (rank + 1)) : 0; in getCellYFromOrder()
108 mContent.cellToRect(cellX, cellY, 1, 1, coords); in getCellCoordinates()
115 int cWidth = mContent.getShortcutsAndWidgets().getCellContentWidth(); in getCellCoordinates()
116 int cHeight = mContent.getShortcutsAndWidgets().getCellContentHeight(); in getCellCoordinates()
131 mContent = (CellLayout) findViewById(R.id.layout); in onFinishInflate()
133 mContent.setGridSize(1, (int) grid.numHotseatIcons); in onFinishInflate()
135 mContent.setGridSize((int) grid.numHotseatIcons, 1); in onFinishInflate()
137 mContent.setIsHotseat(true); in onFinishInflate()
143 mContent.removeAllViewsInLayout(); in resetLayout()
151 inflater.inflate(R.layout.all_apps_button, mContent, false); in resetLayout()
175 mContent.addViewToCellLayout(allAppsButton, -1, 0, lp, true); in resetLayout()
223 …View v = mContent.getChildAt(getCellXFromOrder(mAllAppsButtonRank), getCellYFromOrder(mAllAppsButt… in addAppsToAllAppsFolder()