Home
last modified time | relevance | path

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

/aosp12/packages/apps/Dialer/java/com/android/dialer/dialpadview/
H A DDialpadTextView.java36 private Rect textBounds = new Rect(); field in DialpadTextView
54 canvas.drawText(textStr, -textBounds.left, -textBounds.top, paint); in draw()
65 getPaint().getTextBounds(textStr, 0, textStr.length(), textBounds); in onMeasure()
67 int width = resolveSize(textBounds.width(), widthMeasureSpec); in onMeasure()
68 int height = resolveSize(textBounds.height(), heightMeasureSpec); in onMeasure()
/aosp12/packages/apps/EmergencyInfo/EmergencyGestureAction/src/com/android/emergency/widgets/countdown/
H A DCountDownRenderer.java145 Rect textBounds = new Rect(); in measureText() local
146 textPaint.getTextBounds(text, 0, text.length(), textBounds); in measureText()
147 RectF textBoundsF = new RectF(textBounds); in measureText()
149 textBoundsF.offset(-textBounds.left, -textBounds.top); in measureText()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A 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()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
H A DListDocumentHolder.java166 Rect textBounds = new Rect(); in inDragRegion() local
168 mTitle.getText().toString(), 0, mTitle.getText().length(), textBounds); in inDragRegion() local
173 coords[0] + mIconLayout.getWidth() + textBounds.width(), in inDragRegion()
174 coords[1] + Math.max(mIconLayout.getHeight(), textBounds.height())); in inDragRegion()
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/contact/
H A DContactRecipientAutoCompleteView.java107 final Rect textBounds = new Rect(0, 0, 0, 0); in ContactRecipientAutoCompleteView() local
109 paint.getTextBounds(TEXT_HEIGHT_SAMPLE, 0, TEXT_HEIGHT_SAMPLE.length(), textBounds); in ContactRecipientAutoCompleteView()
110 mTextHeight = textBounds.height(); in ContactRecipientAutoCompleteView()
/aosp12/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A 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()