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 = ArrayUtils.newUnpaddedFloatArray(len);
163 return paint.getTextRunAdvances(mChars, p, len, p, len, isRtl, mWidths, p);
172 paint.getTextRunAdvances(mChars, q, i - q, q, i - q, isRtl, mWidths, q);
208 float[] w = mWidths;
229 float[] w = mWidths;
253 float[] w = mWidths;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 43 private final int[] mWidths = new int[SuggestedWords.MAX_SUGGESTIONS];
78 mWidths[index] = (int)(TypefaceUtils.getStringWidth(word, paint) + padding);
105 if (mWidths[index] > width)
118 maxKeyWidth = Math.max(maxKeyWidth, mWidths[index]);

Completed in 172 milliseconds