Lines Matching refs:mRect
38 private final Rect mRect = new Rect(); field in PendingAppWidgetHostView
186 mRect.set(0, 0, size, size); in onDraw()
187 mRect.inset(outset, outset); in onDraw()
188 … mRect.offsetTo((getWidth() - mRect.width()) / 2, (getHeight() - mRect.height()) / 2); in onDraw()
189 mCenterDrawable.setBounds(mRect); in onDraw()
214 mRect.set(0, 0, size, size); in onDraw()
215 mRect.offsetTo((getWidth() - mRect.width()) / 2, in onDraw()
216 (getHeight() - mRect.height() - mSetupTextLayout.getHeight() in onDraw()
219 mTopCornerDrawable.setBounds(mRect); in onDraw()
222 mRect.left = paddingLeft; in onDraw()
223 mRect.top = mRect.bottom + grid.iconDrawablePaddingPx; in onDraw()
230 mRect.set(0, 0, size, size); in onDraw()
231 … mRect.offsetTo((getWidth() - mRect.width()) / 2, (getHeight() - mRect.height()) / 2); in onDraw()
232 mCenterDrawable.setBounds(mRect); in onDraw()
235 Math.max(mRect.top - paddingTop, mRect.left - paddingLeft)); in onDraw()
247 canvas.translate(mRect.left, mRect.top); in onDraw()