Lines Matching refs:mShortcutsAndWidgets
140 private ShortcutAndWidgetContainer mShortcutsAndWidgets; field in CellLayout
271 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context); in CellLayout()
272 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap, in CellLayout()
279 addView(mShortcutsAndWidgets); in CellLayout()
344 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint); in enableHardwareLayer()
348 mShortcutsAndWidgets.buildLayer(); in buildHardwareLayer()
358 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap, in setCellDimensions()
368 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap, in setGridSize()
375 mShortcutsAndWidgets.setInvertIfRtl(invert); in setInvertIfRtl()
393 mTouchFeedbackView.alignWithIconView(icon, mShortcutsAndWidgets); in setPressedIcon()
626 mShortcutsAndWidgets.setIsHotseat(isHotseat); in setIsHotseat()
658 mShortcutsAndWidgets.addView(child, index, lp); in addViewToCellLayout()
670 mShortcutsAndWidgets.removeAllViews(); in removeAllViews()
675 if (mShortcutsAndWidgets.getChildCount() > 0) { in removeAllViewsInLayout()
677 mShortcutsAndWidgets.removeAllViewsInLayout(); in removeAllViewsInLayout()
684 mShortcutsAndWidgets.removeView(view); in removeView()
689 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index)); in removeViewAt()
690 mShortcutsAndWidgets.removeViewAt(index); in removeViewAt()
696 mShortcutsAndWidgets.removeViewInLayout(view); in removeViewInLayout()
702 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i)); in removeViews()
704 mShortcutsAndWidgets.removeViews(start, count); in removeViews()
710 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i)); in removeViewsInLayout()
712 mShortcutsAndWidgets.removeViewsInLayout(start, count); in removeViewsInLayout()
848 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, in onMeasure()
872 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, in onMeasure()
886 mShortcutsAndWidgets.measure( in onMeasure()
890 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth(); in onMeasure()
891 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight(); in onMeasure()
901 boolean isFullscreen = mShortcutsAndWidgets.getChildCount() > 0 && in onLayout()
902 ((LayoutParams) mShortcutsAndWidgets.getChildAt(0).getLayoutParams()).isFullscreen; in onLayout()
912 mShortcutsAndWidgets.layout(left, top, in onLayout()
938 mShortcutsAndWidgets.setChildrenDrawingCacheEnabled(enabled); in setChildrenDrawingCacheEnabled()
943 mShortcutsAndWidgets.setChildrenDrawnWithCacheEnabled(enabled); in setChildrenDrawnWithCacheEnabled()
963 mShortcutsAndWidgets.setAlpha(alpha); in setShortcutAndWidgetAlpha()
967 return mShortcutsAndWidgets; in getShortcutsAndWidgets()
971 return mShortcutsAndWidgets.getChildAt(x, y); in getChildAt()
2031 int childCount = mShortcutsAndWidgets.getChildCount(); in copyCurrentStateToSolution()
2033 View child = mShortcutsAndWidgets.getChildAt(i); in copyCurrentStateToSolution()
2052 int childCount = mShortcutsAndWidgets.getChildCount(); in copySolutionToTempState()
2054 View child = mShortcutsAndWidgets.getChildAt(i); in copySolutionToTempState()
2080 int childCount = mShortcutsAndWidgets.getChildCount(); in animateItemsToSolution()
2082 View child = mShortcutsAndWidgets.getChildAt(i); in animateItemsToSolution()
2101 int childCount = mShortcutsAndWidgets.getChildCount(); in beginOrAdjustReorderPreviewAnimations()
2103 View child = mShortcutsAndWidgets.getChildAt(i); in beginOrAdjustReorderPreviewAnimations()
2264 int childCount = mShortcutsAndWidgets.getChildCount(); in commitTempPlacement()
2266 View child = mShortcutsAndWidgets.getChildAt(i); in commitTempPlacement()
2286 int childCount = mShortcutsAndWidgets.getChildCount(); in setUseTempCoords()
2288 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams(); in setUseTempCoords()
2371 final int count = mShortcutsAndWidgets.getChildCount(); in getViewsIntersectingRegion()
2373 View child = mShortcutsAndWidgets.getChildAt(i); in getViewsIntersectingRegion()
2397 final int count = mShortcutsAndWidgets.getChildCount(); in revertTempState()
2399 View child = mShortcutsAndWidgets.getChildAt(i); in revertTempState()
2438 mShortcutsAndWidgets.requestLayout(); in createAreaForResize()
2542 mShortcutsAndWidgets.requestLayout(); in performReorder()
2757 if (view == null || view.getParent() != mShortcutsAndWidgets) return; in markCellsAsOccupiedForView()
2763 if (view == null || view.getParent() != mShortcutsAndWidgets) return; in markCellsAsUnoccupiedForView()