HomeSort by relevance Sort by last modified time
    Searched refs:mTextBounds (Results 1 - 4 of 4) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthDrawable.java 36 private final Rect mTextBounds = new Rect();
51 mPaint.getTextBounds(mDayOfMonth, 0, mDayOfMonth.length(), mTextBounds);
52 int textHeight = mTextBounds.bottom - mTextBounds.top;
  /packages/apps/Camera/src/com/android/camera/ui/
ZoomRenderer.java 50 private Rect mTextBounds;
73 mTextBounds = new Rect();
121 mTextPaint.getTextBounds(txt, 0, txt.length(), mTextBounds);
122 canvas.drawText(txt, mCenterX - mTextBounds.centerX(), mCenterY - mTextBounds.centerY(),
  /frameworks/base/media/java/android/media/
TimedText.java 105 private Rect mTextBounds = null;
385 return mTextBounds;
502 mTextBounds = new Rect(left, top, right, bottom);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardView.java 710 private final Rect mTextBounds = new Rect();
718 paint.getTextBounds(referenceChar, 0, 1, mTextBounds);
719 final float height = mTextBounds.height();
730 paint.getTextBounds(referenceChar, 0, 1, mTextBounds);
731 final float width = mTextBounds.width();
738 paint.getTextBounds(label, 0, label.length(), mTextBounds);
739 return mTextBounds.width();
    [all...]

Completed in 2190 milliseconds