HomeSort by relevance Sort by last modified time
    Searched defs:mWidths (Results 1 - 2 of 2) 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;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 50 private final int[] mWidths = new int[SuggestionStripView.MAX_SUGGESTIONS];
78 mWidths[index] = (int)(TypefaceUtils.getLabelWidth(word, paint) + padding);
105 if (mWidths[index] > width)
118 maxKeyWidth = Math.max(maxKeyWidth, mWidths[index]);

Completed in 556 milliseconds