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

  /frameworks/base/core/java/android/text/
MeasuredText.java 34 float[] mWidths;
100 if (mWidths == null || mWidths.length < len) {
101 mWidths = new float[ArrayUtils.idealFloatArraySize(len)];
164 return paint.getTextRunAdvances(mChars, p, len, p, len, flags, mWidths, p);
173 paint.getTextRunAdvances(mChars, q, i - q, q, i - q, flags, mWidths, q);
209 float[] w = mWidths;
230 float[] w = mWidths;
254 float[] w = mWidths;
StaticLayout.java 241 float[] widths = measured.mWidths;
    [all...]
TextUtils.java     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 51 private final int[] mWidths = new int[SuggestionStripView.MAX_SUGGESTIONS];
78 mWidths[pos] = (int)(TypefaceUtils.getLabelWidth(word, paint) + padding);
105 if (mWidths[pos] > width)
118 maxKeyWidth = Math.max(maxKeyWidth, mWidths[pos]);

Completed in 96 milliseconds