Lines Matching refs:mShortcutsAndWidgets

165     private final ShortcutAndWidgetContainer mShortcutsAndWidgets;  field in CellLayout
311 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context, mContainerType); in CellLayout()
312 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY, in CellLayout()
314 addView(mShortcutsAndWidgets); in CellLayout()
362 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint); in enableHardwareLayer()
366 return mShortcutsAndWidgets.getLayerType() == LAYER_TYPE_HARDWARE; in isHardwareLayerEnabled()
372 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY, in setCellDimensions()
382 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY, in setGridSize()
389 mShortcutsAndWidgets.setInvertIfRtl(invert); in setInvertIfRtl()
739 mShortcutsAndWidgets.addView(child, index, lp); in addViewToCellLayout()
751 mShortcutsAndWidgets.removeAllViews(); in removeAllViews()
756 if (mShortcutsAndWidgets.getChildCount() > 0) { in removeAllViewsInLayout()
758 mShortcutsAndWidgets.removeAllViewsInLayout(); in removeAllViewsInLayout()
765 mShortcutsAndWidgets.removeView(view); in removeView()
770 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index)); in removeViewAt()
771 mShortcutsAndWidgets.removeViewAt(index); in removeViewAt()
777 mShortcutsAndWidgets.removeViewInLayout(view); in removeViewInLayout()
783 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i)); in removeViews()
785 mShortcutsAndWidgets.removeViews(start, count); in removeViews()
791 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i)); in removeViewsInLayout()
793 mShortcutsAndWidgets.removeViewsInLayout(start, count); in removeViewsInLayout()
957 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY, in onMeasure()
971 mShortcutsAndWidgets.measure( in onMeasure()
975 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth(); in onMeasure()
976 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight(); in onMeasure()
1002 mShortcutsAndWidgets.layout(left, top, right, bottom); in onLayout()
1021 return mShortcutsAndWidgets; in getShortcutsAndWidgets()
1025 return mShortcutsAndWidgets.getChildAt(cellX, cellY); in getChildAt()
1987 int childCount = mShortcutsAndWidgets.getChildCount(); in copyCurrentStateToSolution()
1989 View child = mShortcutsAndWidgets.getChildAt(i); in copyCurrentStateToSolution()
2004 int childCount = mShortcutsAndWidgets.getChildCount(); in copySolutionToTempState()
2006 View child = mShortcutsAndWidgets.getChildAt(i); in copySolutionToTempState()
2027 int childCount = mShortcutsAndWidgets.getChildCount(); in animateItemsToSolution()
2029 View child = mShortcutsAndWidgets.getChildAt(i); in animateItemsToSolution()
2047 int childCount = mShortcutsAndWidgets.getChildCount(); in beginOrAdjustReorderPreviewAnimations()
2049 View child = mShortcutsAndWidgets.getChildAt(i); in beginOrAdjustReorderPreviewAnimations()
2244 int childCount = mShortcutsAndWidgets.getChildCount(); in commitTempPlacement()
2246 View child = mShortcutsAndWidgets.getChildAt(i); in commitTempPlacement()
2270 int childCount = mShortcutsAndWidgets.getChildCount(); in setUseTempCoords()
2272 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams(); in setUseTempCoords()
2353 final int count = mShortcutsAndWidgets.getChildCount(); in getViewsIntersectingRegion()
2355 View child = mShortcutsAndWidgets.getChildAt(i); in getViewsIntersectingRegion()
2379 final int count = mShortcutsAndWidgets.getChildCount(); in revertTempState()
2381 View child = mShortcutsAndWidgets.getChildAt(i); in revertTempState()
2420 mShortcutsAndWidgets.requestLayout(); in createAreaForResize()
2525 mShortcutsAndWidgets.requestLayout(); in performReorder()
2694 if (view == null || view.getParent() != mShortcutsAndWidgets) return; in markCellsAsOccupiedForView()
2700 if (view == null || view.getParent() != mShortcutsAndWidgets) return; in markCellsAsUnoccupiedForView()