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

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatTextViewAutoSizeHelper.java60 private static final RectF TEMP_RECTF = new RectF(); field in class:AppCompatTextViewAutoSizeHelper
567 synchronized (TEMP_RECTF) {
568 TEMP_RECTF.setEmpty();
569 TEMP_RECTF.right = availableWidth;
570 TEMP_RECTF.bottom = availableHeight;
571 final float optimalTextSize = findLargestTextSizeWhichFits(TEMP_RECTF);
/frameworks/base/core/java/android/widget/
H A DTextView.java341 private static final RectF TEMP_RECTF = new RectF(); field in class:TextView
6265 synchronized (TEMP_RECTF) {
6283 mHighlightPath.computeBounds(TEMP_RECTF, false);
6285 invalidate((int) Math.floor(horizontalPadding + TEMP_RECTF.left - thick),
6286 (int) Math.floor(verticalPadding + TEMP_RECTF.top - thick),
6287 (int) Math.ceil(horizontalPadding + TEMP_RECTF.right + thick),
6288 (int) Math.ceil(verticalPadding + TEMP_RECTF.bottom + thick));
6933 synchronized (TEMP_RECTF) {
6934 mHighlightPath.computeBounds(TEMP_RECTF, true);
6935 r.left = (int) TEMP_RECTF
[all...]

Completed in 40 milliseconds