Home
last modified time | relevance | path

Searched refs:TEMP_RECTF (Results 1 – 2 of 2) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatTextViewAutoSizeHelper.java57 private static final RectF TEMP_RECTF = new RectF(); field in AppCompatTextViewAutoSizeHelper
557 synchronized (TEMP_RECTF) { in autoSizeText()
558 TEMP_RECTF.setEmpty(); in autoSizeText()
559 TEMP_RECTF.right = maxWidth; in autoSizeText()
560 TEMP_RECTF.bottom = maxHeight; in autoSizeText()
561 final float optimalTextSize = findLargestTextSizeWhichFits(TEMP_RECTF); in autoSizeText()
/frameworks/base/core/java/android/widget/
DTextView.java341 private static final RectF TEMP_RECTF = new RectF(); field in TextView
6263 synchronized (TEMP_RECTF) { in invalidateCursorPath()
6281 mHighlightPath.computeBounds(TEMP_RECTF, false); in invalidateCursorPath()
6283 invalidate((int) Math.floor(horizontalPadding + TEMP_RECTF.left - thick), in invalidateCursorPath()
6284 (int) Math.floor(verticalPadding + TEMP_RECTF.top - thick), in invalidateCursorPath()
6285 (int) Math.ceil(horizontalPadding + TEMP_RECTF.right + thick), in invalidateCursorPath()
6286 (int) Math.ceil(verticalPadding + TEMP_RECTF.bottom + thick)); in invalidateCursorPath()
6931 synchronized (TEMP_RECTF) { in getFocusedRect()
6932 mHighlightPath.computeBounds(TEMP_RECTF, true); in getFocusedRect()
6933 r.left = (int) TEMP_RECTF.left - 1; in getFocusedRect()
[all …]