Home
last modified time | relevance | path

Searched refs:childRect (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/widget/
DChartView.java107 final Rect childRect = new Rect(); in onLayout() local
117 Gravity.apply(params.gravity, width, height, parentRect, childRect); in onLayout()
118 child.layout(childRect.left, childRect.top, childRect.right, in onLayout()
119 childRect.bottom + child.getPaddingBottom()); in onLayout()
122 layoutSweep((ChartSweepView) child, parentRect, childRect); in onLayout() local
123 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); in onLayout()
130 final Rect childRect = new Rect(); in layoutSweep() local
132 layoutSweep(sweep, parentRect, childRect); in layoutSweep()
133 sweep.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); in layoutSweep()
136 protected void layoutSweep(ChartSweepView sweep, Rect parentRect, Rect childRect) { in layoutSweep() argument
[all …]
/packages/modules/IntentResolver/java/src/com/android/intentresolver/
DSimpleIconFactory.java369 Rect childRect = new Rect(cX - insetWidth, cY - insetHeight, cX + insetWidth, in createIconBitmap() local
372 drawable.setBounds(childRect); in createIconBitmap()
376 drawable.setBounds(childRect); in createIconBitmap()
/packages/apps/Launcher3/src/com/android/launcher3/widget/picker/
DWidgetsFullSheet.java947 Rect childRect = new Rect(); in getHeaderTopClip() local
948 boolean childVisible = headerChild.getGlobalVisibleRect(childRect); in getHeaderTopClip()
949 if (childVisible && childRect.intersect(cellRect)) { in getHeaderTopClip()
950 occludingRect.union(childRect); in getHeaderTopClip()