Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DScreenRecordDrawable.java121 Rect textBounds = new Rect(); in draw() local
122 mPaint.getTextBounds(val, 0, val.length(), textBounds); in draw()
123 canvas.drawText(val, b.centerX(), b.centerY() + textBounds.height() / 2, mPaint); in draw()
/frameworks/base/core/java/android/hardware/input/
DKeyboardLayoutPreviewDrawable.java267 Rect textBounds = new Rect(); in measureGlyphs() local
268 glyph.paint.getTextBounds(glyph.text, 0, glyph.text.length(), textBounds); in measureGlyphs()
269 float textWidth = textBounds.width(); in measureGlyphs()
270 float textHeight = textBounds.height(); in measureGlyphs()
271 glyph.rect.set(centerX - textWidth / 2, centerY - textHeight / 2 - textBounds.top, in measureGlyphs()
272 centerX + textWidth / 2, centerY + textHeight / 2 - textBounds.top); in measureGlyphs()
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
DRenderingJitter.java126 Rect textBounds = new Rect(); in PointGraphView() local
127 mPaint.getTextBounds("8.8", 0, 3, textBounds); in PointGraphView()
128 mLabelWidth = textBounds.width() + dp(2); in PointGraphView()
129 mLabelHeight = textBounds.height(); in PointGraphView()