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 45 private final int[] mWidths = new int[SuggestionsView.MAX_SUGGESTIONS];
70 mWidths[pos] = (int)view.getLabelWidth(word, paint) + padding;
97 if (mWidths[pos] > width)
110 maxKeyWidth = Math.max(maxKeyWidth, mWidths[pos]);

Completed in 5402 milliseconds