Home | History | Annotate | Download | only in launcher3

Lines Matching defs:mContent

38     private CellLayout mContent;
70 return mContent;
78 mContent.setOnLongClickListener(l);
87 return hasVerticalHotseat() ? (mContent.getCountY() - y - 1) : x;
94 return hasVerticalHotseat() ? (mContent.getCountY() - (rank + 1)) : 0;
107 mContent.cellToRect(cellX, cellY, 1, 1, coords);
114 int cWidth = mContent.getShortcutsAndWidgets().getCellContentWidth();
115 int cHeight = mContent.getShortcutsAndWidgets().getCellContentHeight();
130 mContent = (CellLayout) findViewById(R.id.layout);
132 mContent.setGridSize(1, (int) grid.numHotseatIcons);
134 mContent.setGridSize((int) grid.numHotseatIcons, 1);
136 mContent.setIsHotseat(true);
142 mContent.removeAllViewsInLayout();
150 inflater.inflate(R.layout.all_apps_button, mContent, false);
171 mContent.addViewToCellLayout(allAppsButton, -1, allAppsButton.getId(), lp, true);
219 View v = mContent.getChildAt(getCellXFromOrder(mAllAppsButtonRank), getCellYFromOrder(mAllAppsButtonRank));